From 7ca35f4c0dfe7b5003478858453377018f66ddda Mon Sep 17 00:00:00 2001 From: johanknol Date: Tue, 26 Jun 2001 12:28:45 +0000 Subject: [PATCH] avoid $(CPPFLAGS) abuse git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@954 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- device/lib/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/device/lib/Makefile.in b/device/lib/Makefile.in index 27942fc6..cae24b0c 100644 --- a/device/lib/Makefile.in +++ b/device/lib/Makefile.in @@ -31,7 +31,7 @@ man2dir = $(mandir)/man2 infodir = @infodir@ srcdir = @srcdir@ -CPPFLAGS = -I$(INCDIR) -lang-c++ +CPPFLAGS = -I$(INCDIR) CFLAGS = OBJECTS = _atoi.rel _atol.rel _autobaud.rel _bp.rel _schar2fs.rel \ @@ -134,7 +134,7 @@ dep: Makefile.dep Makefile.dep: $(SOURCES) $(INCDIR)/*.h rm -f Makefile.dep for i in $(SOURCES); do \ - $(CPP) -M $(CPPFLAGS) $$i >$${i}.dep; \ + $(CPP) -lang-c++ -M $(CPPFLAGS) $$i >$${i}.dep; \ cat $${i}.dep >>Makefile.dep; \ rm $${i}.dep; \ done -- 2.47.2