aboutsummaryrefslogtreecommitdiff
path: root/Makefile.include.in
diff options
context:
space:
mode:
authorMemphiz <memphis@machzwo.de>2015-02-13 00:37:34 +0100
committerMemphiz <memphis@machzwo.de>2015-02-13 00:37:34 +0100
commit2dbc1b7bfd37e66715c5fc29f109b5205cf59763 (patch)
treedc2bdca36aecb4f963be2d529682ba58557d8fc1 /Makefile.include.in
parent44bf2a2f18a0ee34d68156fcec69cb1b22c04031 (diff)
[osx] - .m files need to be compiled with C compiler not with C++ compiler (means clang instead of clang++)
Diffstat (limited to 'Makefile.include.in')
-rw-r--r--Makefile.include.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.include.in b/Makefile.include.in
index 481da57c66..a53b83b8c5 100644
--- a/Makefile.include.in
+++ b/Makefile.include.in
@@ -119,7 +119,7 @@ GEN_DEPS=\
%.o: %.m
@rm -f $@
- $(SILENT_MM) $(CXX) -MF $*.d -MD -c $(CXXFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
+ $(SILENT_MM) $(CC) -MF $*.d -MD -c $(CFLAGS) $(DEFINES) $(INCLUDES) $< -o $@ \
&& $(GEN_DEPS)
%.o: %.mm