Skip to content
Snippets Groups Projects
Commit 225e859e authored by michel's avatar michel
Browse files

adapted Makefile for cross compiling

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1696 ac1d8469-bf42-47a9-8791-bf33cf982152
parent d13d5b30
Branches
Tags
No related merge requests found
AR = ar
CPP = g++ CPP = g++
CPPFLAGS = -Wall CPPFLAGS = -Wall
...@@ -10,6 +11,7 @@ endif ...@@ -10,6 +11,7 @@ endif
ifeq ($(CROSS_WIN32), yes) ifeq ($(CROSS_WIN32), yes)
CPP = i586-mingw32msvc-g++ CPP = i586-mingw32msvc-g++
AR = i586-mingw32msvc-ar
# Detection of uninitialized variables is buggy in MinGW and generates spurious warnings # Detection of uninitialized variables is buggy in MinGW and generates spurious warnings
CPPFLAGS += -Wno-uninitialized CPPFLAGS += -Wno-uninitialized
endif endif
......
...@@ -3,7 +3,7 @@ include ../Makefile.include ...@@ -3,7 +3,7 @@ include ../Makefile.include
OBJ = MacroFlex.o MacroBison.o MacroDriver.o OBJ = MacroFlex.o MacroBison.o MacroDriver.o
libmacro.a: $(OBJ) libmacro.a: $(OBJ)
ar crs libmacro.a $(OBJ) $(AR) crs libmacro.a $(OBJ)
-include $(OBJ:.o=.P) -include $(OBJ:.o=.P)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment