blob: 9ff7c6e3015f3423ab0f82f566db989e70abd12b (
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
|
# $FreeBSD$
PROG= ippool
SRCS= ippool_y.c ippool_l.c kmem.c ippool.c
MAN= ippool.5 ippool.8
CFLAGS+= -I.
DPSRCS+= ippool_l.h ippool_y.h
CLEANFILES+= ippool_y.c ippool_y.h
CLEANFILES+= ippool_l.c ippool_l.h
ippool_y.c: ippool_y.y
${YACC} -d ${.ALLSRC}
sed -e 's/yy/ippool_yy/g' \
-e 's/"ippool_y.y"/"..\/tools\/ippool_y.y"/' \
y.tab.c > ${.TARGET}
sed -e 's/yy/ippool_yy/g' \
y.tab.h > ${.TARGET:.c=.h}
ippool_y.h: ippool_y.c
ippool_l.c: lexer.c
sed -e 's/yy/ippool_yy/g' \
-e 's/y.tab.h/ippool_y.h/' \
-e 's/lexer.h/ippool_l.h/' \
${.ALLSRC} > ${.TARGET}
ippool_l.h: lexer.h
sed -e 's/yy/ippool_yy/g' \
${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>
|