Revert rev 1.3 -- I tested using the wrong build compiler.

This commit is contained in:
David E. O'Brien 2002-05-11 00:15:45 +00:00
parent 943aada83d
commit b42da20fd5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96370

View File

@ -5,11 +5,18 @@
.PATH: ${GCCDIR}
PROG= tradcpp0
SRCS= tradcpp.c tradcif.y
SRCS= tradcpp.c tradcif.c
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>