diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2006-09-10 08:58:47 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2006-09-10 08:58:47 +0000 |
commit | f8c9c51988e57dae4e5df8781961261184815fe6 (patch) | |
tree | 847e58e7475b76092087d5ab84e1d66c6de14ebf /sbin/ipf/ippool | |
parent | 794295bab8e3c3384703e38ba9db2be955b8e153 (diff) | |
download | src-f8c9c51988e57dae4e5df8781961261184815fe6.tar.gz src-f8c9c51988e57dae4e5df8781961261184815fe6.zip |
Fix the manual build.
Notes
Notes:
svn path=/head/; revision=162199
Diffstat (limited to 'sbin/ipf/ippool')
-rw-r--r-- | sbin/ipf/ippool/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/ipf/ippool/Makefile b/sbin/ipf/ippool/Makefile index 9ff7c6e3015f..6e3f85da847d 100644 --- a/sbin/ipf/ippool/Makefile +++ b/sbin/ipf/ippool/Makefile @@ -1,14 +1,14 @@ # $FreeBSD$ PROG= ippool -SRCS= ippool_y.c ippool_l.c kmem.c ippool.c +SRCS= ${GENHDRS} ippool_y.c ippool_l.c kmem.c ippool.c MAN= ippool.5 ippool.8 CFLAGS+= -I. -DPSRCS+= ippool_l.h ippool_y.h +GENHDRS= ippool_l.h ippool_y.h +DPSRCS+= ${GENHDRS} -CLEANFILES+= ippool_y.c ippool_y.h -CLEANFILES+= ippool_l.c ippool_l.h +CLEANFILES+= ${GENHDRS} ippool_y.c ippool_l.c ippool_y.c: ippool_y.y ${YACC} -d ${.ALLSRC} |