mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
Bmake bits for GCC 3.1.
This commit is contained in:
parent
ff24f7832c
commit
dd7731cf37
1 changed files with 21 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue