diff options
author | dt <dt@FreeBSD.org> | 1998-06-05 18:38:55 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1998-06-05 18:38:55 +0000 |
commit | ff5abf883c9c6ce6eb1460ed1785468bbc47e9e8 (patch) | |
tree | ad4a1154fa67b7d42cad7cc5add1d8a10feb5078 /share/mk/bsd.prog.mk | |
parent | e6bdbe311cfbf3d127bb0dbf6ca5009224887fd6 (diff) | |
download | FreeBSD-src-ff5abf883c9c6ce6eb1460ed1785468bbc47e9e8.zip FreeBSD-src-ff5abf883c9c6ce6eb1460ed1785468bbc47e9e8.tar.gz |
Recognize ".cpp" as a C++ suffix.
PR: 3476
Diffstat (limited to 'share/mk/bsd.prog.mk')
-rw-r--r-- | share/mk/bsd.prog.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk index d2c7bdb..e35df86 100644 --- a/share/mk/bsd.prog.mk +++ b/share/mk/bsd.prog.mk @@ -1,5 +1,5 @@ # from: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91 -# $Id: bsd.prog.mk,v 1.73 1998/05/15 09:30:12 bde Exp $ +# $Id: bsd.prog.mk,v 1.74 1998/05/15 09:34:48 bde Exp $ .if exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" @@ -8,7 +8,7 @@ # Default executable format BINFORMAT?= aout -.SUFFIXES: .out .o .c .cc .cxx .C .m .y .l .s .S +.SUFFIXES: .out .o .c .cc .cpp .cxx .C .m .y .l .s .S CFLAGS+=${COPTS} ${DEBUG_FLAGS} .if defined(DESTDIR) |