diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-10 23:20:54 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-10 23:20:54 +0000 |
commit | aaf4b41b86f7da0303eb723e07cfea5f8629cca4 (patch) | |
tree | 9c66d8cb1f1c5cb6279860751539840e0c30e93f /gnu | |
parent | e11cb46ee8e7eea44531903aaac525bbd80f14c0 (diff) | |
download | FreeBSD-src-aaf4b41b86f7da0303eb723e07cfea5f8629cca4.zip FreeBSD-src-aaf4b41b86f7da0303eb723e07cfea5f8629cca4.tar.gz |
Actually we don't need any special YACC'ing here. The ones known to
Bmake are fine.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/tradcpp0/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/usr.bin/cc/tradcpp0/Makefile b/gnu/usr.bin/cc/tradcpp0/Makefile index 9a6b085..0b30709 100644 --- a/gnu/usr.bin/cc/tradcpp0/Makefile +++ b/gnu/usr.bin/cc/tradcpp0/Makefile @@ -5,18 +5,11 @@ .PATH: ${GCCDIR} PROG= tradcpp0 -SRCS= tradcpp.c tradcif.c +SRCS= tradcpp.c tradcif.y BINDIR= /usr/libexec NOMAN= 1 DPADD+= ${LIBCC_INT} LDADD+= ${LIBCC_INT} -# ${YACC} ${GCCDIR}/tradcif.y -tradcif.c: tradcif.y - ${YACC} ${.ALLSRC} - sed -e "s/malloc/xmalloc/g" \ - -e "s/realloc/xrealloc/g" \ - y.tab.c >${.TARGET} - .include <bsd.prog.mk> |