-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
77 lines (49 loc) · 962 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#
# make defines
#
# cc tags
ELGIN_LIBDIR="\"./\""
CFLAGS= -O -Wall -g -DLIBDIR=$(ELGIN_LIBDIR) -DHAVE_READLINE
LDFLAGS= -lreadline -lm
CC=gcc
#
# files to make
#
REBUILD_FILES= pw_elgin
# source modules
FILES = pw_elgin.o
#
# make definitions
#
all: Muncmprs Mkupdt
#
# definitions for the modules
#
Mkupdt: $(REBUILD_FILES)
touch $@
pw_elgin: $(FILES)
$(CC) -o pw_elgin $(LDFLAGS) $(FILES) $(LIBS)
#
# standard entry names for make
#
clean:
-rm -f *.o *.bep *.bpd *.bcs *.bes
rebuild:
-rm -f Mk* *.t* *.bep *.bpd *.bcs *.bes $(REBUILD_FILES)
make all
depends:
make_dep
compress: Mcmprs
uncompress: Muncmprs
Mcmprs:
-compress *.c *.h *.bpl *.s
-rm -f Muncmprs
touch $@
Muncmprs:
-uncompress *.Z
-rm -f Mcmprs
touch $@
shar:
shar Makefile $(HDRS) $(SRCS) > etool.shar
# the following lines were generated by "depends" and should not be modified
# the above lines were generated by "depends" and should not be modified