summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2008-04-30 04:58:19 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2008-04-30 04:58:19 +0000
commit7e9a36b640f18febaa4d1beeda6e0f55749cd2b2 (patch)
tree04f662e583f70175503cdf5e0393cbd3eaccb7cb /makefile
parentd36e83a374d0d26a145e9cba631dd984578ee571 (diff)
Began factoring out some common tools.
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index b270af4..2f48272 100644
--- a/makefile
+++ b/makefile
@@ -14,7 +14,7 @@ test: all
exec: exec.mm makefile
$(target)g++ -Wall -Werror -o $@ $< -framework Foundation -framework CoreFoundation -lobjc
-Cydia: Cydia.mm *.h makefile
- $(target)g++ -fobjc-call-cxx-cdtors -g3 -O2 -Wall -Werror -o $@ $< -framework UIKit -framework IOKit -framework CoreFoundation -framework Foundation -framework CoreGraphics -framework GraphicsServices -framework LayerKit -lobjc -lapt-pkg -lpcre -fobjc-exceptions -I/apl/i20 -F$${PKG_ROOT}/System/Library/PrivateFrameworks
+Cydia: Cydia.mm RVBook.mm RVPage.mm *.h makefile
+ $(target)g++ -fobjc-call-cxx-cdtors -g3 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework IOKit -framework CoreFoundation -framework Foundation -framework CoreGraphics -framework GraphicsServices -framework LayerKit -lobjc -lapt-pkg -lpcre -fobjc-exceptions -I/apl/i20 -F$${PKG_ROOT}/System/Library/PrivateFrameworks
.PHONY: all clean test