mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
28 lines
653 B
Makefile
28 lines
653 B
Makefile
#
|
|
# $Id: Makefile,v 1.5 1999/04/04 16:36:31 obrien Exp $
|
|
#
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH: ${GCCDIR}
|
|
|
|
PROG = c++filt
|
|
SRCS = cplus-dem.c getopt.c getopt1.c underscore.c
|
|
NOMAN= 1
|
|
CFLAGS+= -DMAIN -DIN_GCC -DVERSION=\"$(version)\"
|
|
|
|
CLEANFILES= tmp-dum.c tmp-dum.s underscore.c
|
|
|
|
underscore.c:
|
|
echo "int xxy_us_dummy;" >tmp-dum.c
|
|
${CC} -S tmp-dum.c
|
|
echo '/*WARNING: This file is automatically generated!*/' >underscore.c
|
|
if grep _xxy_us_dummy tmp-dum.s > /dev/null ; then \
|
|
echo "int prepends_underscore = 1;" >>underscore.c; \
|
|
else \
|
|
echo "int prepends_underscore = 0;" >>underscore.c; \
|
|
fi
|
|
rm -f tmp-dum.c tmp-dum.s
|
|
|
|
.include <bsd.prog.mk>
|