opnsense-src/gnu/usr.bin/cc/c++filt/Makefile

24 lines
437 B
Makefile
Raw Normal View History

1999-08-27 19:37:10 -04:00
# $FreeBSD$
.include "../Makefile.inc"
.PATH: ${GCCDIR}
PROG= c++filt
2002-04-06 18:18:01 -05:00
SRCS= cp-demangle.c cplus-dem+%DIKED.c
NOMAN= 1
CFLAGS+= -DSTANDALONE_DEMANGLER -DIN_GCC -DVERSION=\"$(version)\"
DPADD= ${LIBCC_INT}
LDADD= ${LIBCC_INT}
cplus-dem+%DIKED.c: cplus-dem.c
sed -e 's/^xmalloc[ ]/_DONT_xmalloc /g' \
-e 's/^xrealloc[ ]/_DONT_xrealloc /g' \
${.ALLSRC} > ${.TARGET}
2002-05-12 08:06:19 -04:00
CLEANFILES= cplus-dem+%DIKED.c
.include <bsd.prog.mk>