aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cc/c++
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-04-06 23:18:01 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-04-06 23:18:01 +0000
commit9e3b0010176971fc4da7fd68991a816118053288 (patch)
treea2dd1dbef0c5c9eb6362307a5b2fb7718bca592d /gnu/usr.bin/cc/c++
parent4e6aeb72b4312c4c9bfb14910ff904403a004d40 (diff)
Notes
Diffstat (limited to 'gnu/usr.bin/cc/c++')
-rw-r--r--gnu/usr.bin/cc/c++/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/usr.bin/cc/c++/Makefile b/gnu/usr.bin/cc/c++/Makefile
new file mode 100644
index 0000000000000..be231122fa938
--- /dev/null
+++ b/gnu/usr.bin/cc/c++/Makefile
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+.include "../Makefile.inc"
+.include "../Makefile.fe"
+
+.PATH: ${GCCDIR}/cp ${GCCDIR}
+
+PROG= c++
+SRCS= gcc.c g++spec.c
+LINKS= ${BINDIR}/c++ ${BINDIR}/g++
+LINKS+= ${BINDIR}/c++ ${BINDIR}/CC
+NOMAN= 1
+
+CFLAGS+= -DDEFAULT_TARGET_VERSION=\"$(version)\"
+CFLAGS+= -DDEFAULT_TARGET_MACHINE=\"$(target)\"
+
+DPADD+= ${LIBCC_INT} ${LIBCC_FBSD}
+LDADD+= ${LIBCC_INT} ${LIBCC_FBSD}
+
+.include <bsd.prog.mk>