diff options
author | Johannes Schickel | 2012-02-19 22:01:47 +0100 |
---|---|---|
committer | Johannes Schickel | 2012-02-19 22:02:19 +0100 |
commit | a9b74779c95b5948bcb6e8d5eccc0b9f8f4e8106 (patch) | |
tree | a599707b1d8f6bf688e75c6cc8dd8eba0c5da413 | |
parent | 13358c541df46b03d3c25a9fa7e4615c64424517 (diff) | |
download | scummvm-rg350-a9b74779c95b5948bcb6e8d5eccc0b9f8f4e8106.tar.gz scummvm-rg350-a9b74779c95b5948bcb6e8d5eccc0b9f8f4e8106.tar.bz2 scummvm-rg350-a9b74779c95b5948bcb6e8d5eccc0b9f8f4e8106.zip |
IPHONE: Pass $CPPFLAGS to build command line for ObjC files.
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 2aa3325b5d..744ac493e3 100644 --- a/Makefile.common +++ b/Makefile.common @@ -106,7 +106,7 @@ ifdef CXX_UPDATE_DEP_FLAG %.o: %.m $(QUIET)$(MKDIR) $(*D)/$(DEPDIR) - $(QUIET_CXX)$(CXX) $(CXX_UPDATE_DEP_FLAG) $(OBJCFLAGS) -c $(<) -o $*.o + $(QUIET_CXX)$(CXX) $(CXX_UPDATE_DEP_FLAG) $(CPPFLAGS) $(OBJCFLAGS) -c $(<) -o $*.o # Build rule for assembler files with preprocessing %.o: %.S |