diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-10 02:36:12 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-10 02:36:12 +0000 |
| commit | dd7731cf37ebfa826c18891cf860e2969451cc62 (patch) | |
| tree | ea21ca4eac5a3c8a4ddeca5c350d0b901aa4a2d3 /gnu | |
| parent | ff24f7832c922573575366c021ae5afab89db648 (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/cc/tradcpp0/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/usr.bin/cc/tradcpp0/Makefile b/gnu/usr.bin/cc/tradcpp0/Makefile index e8c0da7a1d7e..9a6b085ad6a6 100644 --- a/gnu/usr.bin/cc/tradcpp0/Makefile +++ b/gnu/usr.bin/cc/tradcpp0/Makefile @@ -1 +1,22 @@ # $FreeBSD$ + +.include "../Makefile.inc" + +.PATH: ${GCCDIR} + +PROG= tradcpp0 +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> |
