|
|
1.1 root 1: # @(#)Makefile 4.6 11/3/83
2: CFLAGS= -O
3: DESTDIR=
4: ALL= htable
5:
6: all: ${ALL}
7:
8: htable: htable.o parse.o scan.o
9: ${CC} htable.o parse.o scan.o -o htable
10:
11: htable.o: htable.c htable.h
12: ${CC} ${CFLAGS} -c htable.c
13:
14: scan.o: scan.c htable.h y.tab.h
15:
16: parse.o: parse.c htable.h
17:
18: scan.c: scan.l
19:
20: parse.c: parse.y
21:
22: y.tab.h:
23: ${YACC} -d parse.y
24: rm y.tab.c
25:
26: clean:
27: rm -f ${ALL} *.o *.s y.tab.h errs
28:
29: install:
30: install -s htable ${DESTDIR}/etc/htable
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.