date and time created 87/02/05 15:19:02 by slatteng
[unix-history] / usr / src / old / htable / Makefile
CommitLineData
8a3f4fd4
DF
1#
2# Copyright (c) 1980 Regents of the University of California.
3# All rights reserved. The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
a7672d6a 6# @(#)Makefile 5.2 (Berkeley) %G%
8a3f4fd4 7#
b2bfe6d1 8CFLAGS= -O
6017a464 9DESTDIR=
bcc152c2 10ALL= htable
b2bfe6d1 11
b2ac07a4 12all: ${ALL}
b2bfe6d1
SL
13
14htable: htable.o parse.o scan.o
15 ${CC} htable.o parse.o scan.o -o htable
16
17htable.o: htable.c htable.h
99d3ae94 18 ${CC} ${CFLAGS} -c htable.c
b2bfe6d1
SL
19
20scan.o: scan.c htable.h y.tab.h
21
22parse.o: parse.c htable.h
23
24scan.c: scan.l
25
26parse.c: parse.y
27
28y.tab.h:
29 ${YACC} -d parse.y
30 rm y.tab.c
31
32clean:
a7672d6a 33 rm -f ${ALL} *.o *.s parse.c scan.c y.tab.h errs
b2bfe6d1
SL
34
35install:
b2ac07a4 36 install -s htable ${DESTDIR}/etc/htable