diff options
author | Scott Beamer <sbeamer@eecs.berkeley.edu> | 2014-08-27 21:27:30 -0700 |
---|---|---|
committer | Scott Beamer <sbeamer@eecs.berkeley.edu> | 2014-08-27 21:27:30 -0700 |
commit | 44793fde81a427dbf40e1bcc9c7744e4c7f0af76 (patch) | |
tree | 4d424274d12eeeceb967ce7092dbed37bbb77ece /Makefile.in | |
parent | 0ac8a9b068c75aac6b28de175ecb6f729ec8b67d (diff) | |
download | spike-44793fde81a427dbf40e1bcc9c7744e4c7f0af76.zip spike-44793fde81a427dbf40e1bcc9c7744e4c7f0af76.tar.gz spike-44793fde81a427dbf40e1bcc9c7744e4c7f0af76.tar.bz2 |
don't include same flags twice
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 45d22a4..7bbf1d8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -87,7 +87,7 @@ CXX := @CXX@ CFLAGS += @CFLAGS@ -DPREFIX=\"$(prefix)\" CPPFLAGS += @CPPFLAGS@ CXXFLAGS += @CXXFLAGS@ -DPREFIX=\"$(prefix)\" -COMPILE := $(CXX) -fPIC -MMD -MP $(CPPFLAGS) $(CFLAGS) $(CXXFLAGS) \ +COMPILE := $(CXX) -fPIC -MMD -MP $(CPPFLAGS) $(CXXFLAGS) \ $(sprojs_include) COMPILE_C := $(CC) -fPIC -MMD -MP $(CPPFLAGS) $(CFLAGS) \ $(sprojs_include) |