-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile
47 lines (39 loc) · 909 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
#
# $Id: makefile,v 1.5 1996/04/08 09:30:05 sev Exp $
#
# ----------------------------------------------------------
#
# $Log: makefile,v $
# Revision 1.5 1996/04/08 09:30:05 sev
# hmm..
#
# Revision 1.4 1994/08/15 20:42:11 sev
# Indented
#
# Revision 1.3 1994/06/28 16:27:33 sev
# Last time I forgot english.h :-(
#
# Revision 1.2 1994/06/24 17:22:21 sev
# added menu.c
#
# Revision 1.1 1994/06/24 14:17:12 sev
# Initial revision
#
#
#
CC=gcc
CFLAGS=
OFILES= basic.o buffer.o display.o\
file.o fileio.o input.o line.o main.o\
random.o tcap.o unix.o
CFILES= basic.c buffer.c display.c\
file.c fileio.c input.c line.c main.c\
random.c tcap.c unix.c
HFILES= estruct.h etype.h english.h
dynamic: $(OFILES)
$(CC) $(CFLAGS) -o dynamic $(OFILES) -ltermcap -lc
$(OFILES): $(HFILES)
main.o: ebind.h edef.h
clean:
rm -f $(OFILES) core *.b
ci $(CFILES) $(HFILES) makefile ema