diff options
| author | mycroft <mycroft@NetBSD.org> | 1993-06-17 03:52:28 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1993-06-17 03:52:28 +0000 |
| commit | 2caee481cfd43ef810ff70dee126dfd6c4d059c0 (patch) | |
| tree | c6f22fcb3a9b2614dbf42c5883bd288d0847655a /gnu/lib/libg++ | |
| parent | 30b696c98110303865395209c979609039e305ce (diff) | |
Use CXX and CXXFLAGS.
Diffstat (limited to 'gnu/lib/libg++')
| -rw-r--r-- | gnu/lib/libg++/libg++/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/lib/libg++/libg++/Makefile b/gnu/lib/libg++/libg++/Makefile index 231c76abf04..0da5682ecab 100644 --- a/gnu/lib/libg++/libg++/Makefile +++ b/gnu/lib/libg++/libg++/Makefile @@ -11,16 +11,15 @@ CFLAGS+=-I$(.CURDIR)/../g++-include .ifmake (depend) CFLAGS+=-+ .endif -GXX= g++ -GXXFLAGS= ${CFLAGS} -felide-constructors +CXXFLAGS+=-felide-constructors .cc.o: - $(GXX) $(GXXFLAGS) -c $(.IMPSRC) + $(CXX) $(CXXFLAGS) -c $(.IMPSRC) @$(LD) -x -r $(.TARGET) @mv a.out $(.TARGET) .cc.po: - $(GXX) -p $(GXXFLAGS) -c $(.IMPSRC) -o $(.TARGET) + $(CXX) -p $(CXXFLAGS) -c $(.IMPSRC) -o $(.TARGET) @$(LD) -X -r $(.TARGET) @mv a.out $(.TARGET) @@ -29,7 +28,7 @@ GXXFLAGS= ${CFLAGS} -felide-constructors # LIB= g++ -GXXFLAGS+= -I$(.CURDIR)/../g++-include -DHAVE_VPRINTF -DHAVE_VSCANF \ +CXXFLAGS+= -I$(.CURDIR)/../g++-include -DHAVE_VPRINTF -DHAVE_VSCANF \ -DHAVE_SETVBUF -DHAVE_SETLINEBUF -DHAVE_GETPAGESIZE SRCS= AllocRing.cc Obstack.cc File.cc ostream.cc istream.cc \ streambuf.cc filebuf.cc Filebuf.cc open.cc PlotFile.cc \ |
