summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/cc/c++filt
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-07-08 00:14:15 +0000
committerbde <bde@FreeBSD.org>1998-07-08 00:14:15 +0000
commit39ff18089a4cdb4c92375680b1f148ab86a589b7 (patch)
tree9f317a4827a9be38589340051194fe1afab49c37 /gnu/usr.bin/cc/c++filt
parentd43626f9548983fe985c1db8cc1da12ac8577b2f (diff)
downloadFreeBSD-src-39ff18089a4cdb4c92375680b1f148ab86a589b7.zip
FreeBSD-src-39ff18089a4cdb4c92375680b1f148ab86a589b7.tar.gz
Use the installed versions of cc, cc1 and cpp for building underscore.
They have been bootstrapped by `make world' since long before the hacks here were cloned from ../libgcc/Makefile. The versions just built in "../*" normally won't work if the target system is not binary compatible. Don't use OBJS to defeat `make depend'; just put generated sources in SRCS. Added temporary files to CLEANFILES.
Diffstat (limited to 'gnu/usr.bin/cc/c++filt')
-rw-r--r--gnu/usr.bin/cc/c++filt/Makefile39
1 files changed, 4 insertions, 35 deletions
diff --git a/gnu/usr.bin/cc/c++filt/Makefile b/gnu/usr.bin/cc/c++filt/Makefile
index 5e801de..34cd99e 100644
--- a/gnu/usr.bin/cc/c++filt/Makefile
+++ b/gnu/usr.bin/cc/c++filt/Makefile
@@ -1,48 +1,18 @@
#
-# $Id$
+# $Id: Makefile,v 1.3 1997/02/22 15:44:50 peter Exp $
#
PROG = c++filt
-SRCS = cplus-dem.c getopt.c getopt1.c
-OBJS+= underscore.o # defeat 'make depend'
+SRCS = cplus-dem.c getopt.c getopt1.c underscore.c
BINDIR= /usr/bin
NOMAN= 1
CFLAGS+= -DMAIN -DIN_GCC -DVERSION=\"$(version)\"
-
-#
-# XXX This is a hack, but it seems to work. libgcc1.a is supposed to be
-# compiled by the native compiler, and libgcc2.a is meant to be compiled
-# by *this* version of gcc.
-#
-# Normally, this does not make any difference, since we only have gcc, but
-# when bootstrapping from gcc-2.6.3, we have to use the freshly built 2.7.2
-# compiler for some of the libgcc2.c __attribute__ stuff.
-#
-.if exists(${.OBJDIR}/../cc)
-XCC= ${.OBJDIR}/../cc/cc
-.else
-XCC= ${.CURDIR}/../cc/cc
-.endif
-
-.if exists(${.OBJDIR}/../cc1)
-XCC+= -B${.OBJDIR}/../cc1/
-.else
-XCC+= -B${.CURDIR}/../cc1/
-.endif
-
-.if exists(${.OBJDIR}/../cpp)
-XCC+= -B${.OBJDIR}/../cpp/
-.else
-XCC+= -B${.CURDIR}/../cpp/
-.endif
-
-CLEANFILES+= underscore.c
-underscore.o: underscore.c
+CLEANFILES= tmp-dum.c tmp-dum.s underscore.c
underscore.c:
echo "int xxy_us_dummy;" >tmp-dum.c
- ${XCC} -S 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; \
@@ -52,4 +22,3 @@ underscore.c:
rm -f tmp-dum.c tmp-dum.s
.include <bsd.prog.mk>
-
OpenPOWER on IntegriCloud