diff options
author | Matthew Newhook <matthew@zeroc.com> | 2015-04-23 15:11:38 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2015-04-23 15:11:38 -0230 |
commit | 25813afcb67cf87ebb0318ebefefacd3061c9e60 (patch) | |
tree | b3c69049535d1dd930296b26ad71116c6f132e26 /objective-c | |
parent | Update to use latest gradle ice builder (diff) | |
download | ice-25813afcb67cf87ebb0318ebefefacd3061c9e60.tar.bz2 ice-25813afcb67cf87ebb0318ebefefacd3061c9e60.tar.xz ice-25813afcb67cf87ebb0318ebefefacd3061c9e60.zip |
ICE-6450 Dependencies and system headers
Diffstat (limited to 'objective-c')
-rw-r--r-- | objective-c/config/Make.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/objective-c/config/Make.rules b/objective-c/config/Make.rules index 59688462371..ebf09cfbca2 100644 --- a/objective-c/config/Make.rules +++ b/objective-c/config/Make.rules @@ -133,12 +133,12 @@ all:: $(TARGETS) .m.o: $(CC) -c $(ARCFLAGS) $(CPPFLAGS) $(OBJCFLAGS) $< @mkdir -p .depend - @$(CXX) -DMAKEDEPEND -M $(CPPFLAGS) $< > .depend/$(*F).d + @$(CXX) -DMAKEDEPEND -MM $(CPPFLAGS) $< > .depend/$(*F).d .mm.o: $(CXX) -c $(ARCFLAGS) $(CPPFLAGS) $(OBJCFLAGS) $< @mkdir -p .depend - @$(CXX) -DMAKEDEPEND -M $(CPPFLAGS) $< > .depend/$(*F).d + @$(CXX) -DMAKEDEPEND -MM $(CPPFLAGS) $< > .depend/$(*F).d $(HDIR)/%F.h: $(SDIR)/%F.ice $(SLICE2OBJC) rm -f $(HDIR)/$(*F)F.h $(*F)F.m |