blob: 8dcd2c8e8ff93d18eea4e16bf7b25a18019151a8 (
plain)
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
|
# @configure_input@
CC = @CC@
CFLAGS = @CFLAGS@ @CPPFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
ifeq (@GCC@,yes)
CFLAGS += -Wall
endif
all: teco
OBJS = tecbuf.o teccmd.o tecdebug.o tecdisp.o tecexec.o tecmem.o teco.o tecparse.o tecstate.o tecterm.o tecundo.o
HEADERS = teco.h tecparse.h
LIBFLAGS = -ltermcap
teco: $(OBJS)
$(CC) $(LDFLAGS) -o teco $(OBJS) $(LIBS)
tecbuf.o: tecbuf.c $(HEADERS)
$(CC) $(CFLAGS) -c tecbuf.c
teccmd.o: teccmd.c $(HEADERS)
$(CC) $(CFLAGS) -c teccmd.c
tecdebug.o: tecdebug.c $(HEADERS)
$(CC) $(CFLAGS) -c tecdebug.c
tecdisp.o: tecdisp.c $(HEADERS)
$(CC) $(CFLAGS) -c tecdisp.c
tecexec.o: tecexec.c $(HEADERS)
$(CC) $(CFLAGS) -c tecexec.c
tecmem.o: tecmem.c $(HEADERS)
$(CC) $(CFLAGS) -c tecmem.c
teco.o: teco.c $(HEADERS)
$(CC) $(CFLAGS) -c teco.c
tecparse.o: tecparse.c $(HEADERS)
$(CC) $(CFLAGS) -c tecparse.c
tecstate.o: tecstate.c $(HEADERS)
$(CC) $(CFLAGS) -c tecstate.c
tecterm.o: tecterm.c $(HEADERS)
$(CC) $(CFLAGS) -c tecterm.c
tecundo.o: tecundo.c $(HEADERS)
$(CC) $(CFLAGS) -c tecundo.c
clean:
rm -f teco $(OBJS)
distclean: clean
rm -f teco config.h config.log config.status
developerclean: distclean
rm -f makefile
rm -rf autom4te.cache
|