]> git.saurik.com Git - cycript.git/blobdiff - makefile
Implemented [super ...] calls in @class blocks.
[cycript.git] / makefile
index 78641e89c1d251f900593640ba6cb9ee1cb979cf..edf2668c024ba26bc7cfad38c2ab6c57cedde8f0 100644 (file)
--- a/makefile
+++ b/makefile
@@ -104,15 +104,16 @@ lex.cy.c: Cycript.l
 %.o: sig/%.cpp
        $(target)g++ $(flags) -c -o $@ $<
 
-Cycript.tab.o: Cycript.tab.cc Cycript.tab.hh Parser.hpp Pooling.hpp
+Cycript.tab.o: Cycript.tab.cc $(header)
        $(target)g++ $(flags) -c -o $@ $<
 
-lex.cy.o: lex.cy.c Cycript.tab.hh Parser.hpp Pooling.hpp
+lex.cy.o: lex.cy.c $(header)
        $(target)g++ $(flags) -c -o $@ $<
 
 %.o: %.cpp $(header)
        $(target)g++ $(flags) -c -o $@ $<
 
+#objc := -x c++
 %.o: %.mm $(header)
        $(target)g++ $(objc) $(flags) -c -o $@ $<