summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2008-04-30 04:59:47 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:07:35 +0000
commit308c03802400d5679ec355e577f09bd0e86bfcd9 (patch)
tree626ef998c47ebbe33e0768293fd0da57b3e922d6 /makefile
parent7e9a36b640f18febaa4d1beeda6e0f55749cd2b2 (diff)
Factored out common code to common subproject.
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 2f48272..d196f27 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 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
+Cydia: Cydia.mm ../uicaboodle.m/*.mm *.h makefile
+ $(target)g++ -I../uicaboodle.m -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