freebsd-dev/gnu/usr.bin/cc/cpp0/Makefile

37 lines
781 B
Makefile
Raw Normal View History

# $FreeBSD$
.include "../Makefile.inc"
.PATH: ${GCCDIR}
PROG= cpp0
SRCS= cppmain.c c-parse+%DIKED.c c-lang.c c-decl.c
2002-04-06 23:18:01 +00:00
BINDIR= /usr/libexec
NOMAN= 1
2002-04-06 23:18:01 +00:00
NOSHARED?=yes
DPADD+= ${LIBCC_INT}
LDADD+= ${LIBCC_INT}
2002-04-06 23:18:01 +00:00
#-----------------------------------------------------------------------
# C parser
c-parse+%DIKED.c: c-parse.c
sed -e "s/malloc/xmalloc/g" \
-e "s/realloc/xrealloc/g" \
${.ALLSRC} > ${.TARGET}
c-parse.y: c-parse.in
2002-04-06 23:18:01 +00:00
sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
-e "/^ifc$$/d" \
-e "/^end ifc$$/d" \
${.ALLSRC} > ${.TARGET}
2002-04-06 23:18:01 +00:00
CLEANFILES= c-parse+%DIKED.c c-parse.c c-parse.y
CLEANFILES+= y.tab.h # we don't use it, but the system YACC rules are naive
2002-04-06 23:18:01 +00:00
#-----------------------------------------------------------------------
.include <bsd.prog.mk>