From 02400ca1391543143b0ee5ac1e3610e2a95fcc31 Mon Sep 17 00:00:00 2001
From: sebastien <sebastien@ac1d8469-bf42-47a9-8791-bf33cf982152>
Date: Thu, 19 Jun 2008 16:39:23 +0000
Subject: [PATCH] v4 preprocessor: use GNU make's standard variables names and
 default values for g++ (CXX) and ar (AR)

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1885 ac1d8469-bf42-47a9-8791-bf33cf982152
---
 Makefile         |  2 +-
 Makefile.include | 21 +++++++++------------
 2 files changed, 10 insertions(+), 13 deletions(-)

diff --git a/Makefile b/Makefile
index 37c3da5a..d1a85afe 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ all-recursive:
 	make -C macro
 
 $(DYNARE_M): $(OBJS) macro/libmacro.a
-	$(CPP) $(CPPFLAGS) -o $(DYNARE_M) $(OBJS) -Lmacro -lmacro
+	$(CXX) $(CXXFLAGS) -o $(DYNARE_M) $(OBJS) -Lmacro -lmacro
 	cp $(DYNARE_M) ../matlab/
 
 
diff --git a/Makefile.include b/Makefile.include
index a1e03a4e..0a3cdbc4 100644
--- a/Makefile.include
+++ b/Makefile.include
@@ -1,34 +1,31 @@
-AR = ar
-CPP = g++
-
-CPPFLAGS = -Wall
+CXXFLAGS = -Wall
 
 ifeq ($(shell uname -o), Cygwin)
 	# Detection of uninitialized variables is buggy in Cygwin and generates spurious warnings
-	CPPFLAGS += -Wno-uninitialized
-	CPPFLAGS += -mno-cygwin
+	CXXFLAGS += -Wno-uninitialized
+	CXXFLAGS += -mno-cygwin
 endif
 
 ifeq ($(CROSS_WIN32), yes)
-	CPP = i586-mingw32msvc-g++
+	CXX = i586-mingw32msvc-g++
 	AR = i586-mingw32msvc-ar
 	# Detection of uninitialized variables is buggy in MinGW and generates spurious warnings
-	CPPFLAGS += -Wno-uninitialized
+	CXXFLAGS += -Wno-uninitialized
 endif
 
 ifeq ($(DEBUG),yes)
-	CPPFLAGS += -ggdb
+	CXXFLAGS += -ggdb
 else
-	CPPFLAGS += -O3
+	CXXFLAGS += -O3
 endif
 
 ifeq ($(VALGRIND), yes)
-	CPPFLAGS = -Wall -O -g -fno-inline
+	CXXFLAGS = -Wall -O -g -fno-inline
 endif
 
 # General rule for compilation
 %.o : %.cc
-	$(CPP) $(CPPFLAGS) -MD -I include -c $<
+	$(CXX) $(CXXFLAGS) -MD -I include -c $<
 	@cp $*.d $*.P; \
 	  sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
 	      -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
-- 
GitLab