]> git.saurik.com Git - winterboard.git/blobdiff - makefile
Organize command line arguments more better smart.
[winterboard.git] / makefile
index e31d0865f67be2190df1fc89c6bf29ec4e7e01dc..0629bab0ab35f54b43420a55c80d89cc3f353396 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,28 +1,47 @@
-ifndef PKG_TARG
-target :=
-else
-target := $(PKG_TARG)-
-endif
+cycc = cycc -i2.0 -o$@ -- $(filter %.mm,$^) -g0 -O2 -Werror -Iiphone-api -F/System/Library/PrivateFrameworks
 
-all: WinterBoard WinterBoard.dylib
+substrate := -I../substrate -L../substrate -lsubstrate
+
+all: WinterBoard WinterBoard.dylib WinterBoardSettings Optimize
 
 clean:
        rm -f WinterBoard WinterBoard.dylib
 
-WinterBoard.dylib: Library.mm makefile
-       $(target)g++ -dynamiclib -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework CoreFoundation -framework Foundation -lobjc -init _WBInitialize -I/apl/inc/iPhoneOS-2.0
+WinterBoardSettings: Settings.mm makefile
+       $(cycc) -dynamiclib \
+           -framework UIKit \
+           -framework CoreFoundation \
+           -framework Foundation \
+           -framework CoreGraphics \
+           -framework Preferences \
+           -lobjc
+
+WinterBoard.dylib: Library.mm WBMarkup.mm WBMarkup.h makefile ../substrate/substrate.h
+       $(cycc) -dynamiclib \
+           -framework CoreFoundation \
+           -framework Foundation \
+           -framework CoreGraphics \
+           -framework ImageIO \
+           -framework GraphicsServices \
+           -framework Celestial \
+           -framework UIKit \
+           -framework WebCore \
+           -framework WebKit \
+           -lobjc $(substrate)
 
 WinterBoard: Application.mm makefile
-       $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc -framework CoreGraphics
-
-package:
-       rm -rf winterboard
-       mkdir -p winterboard/DEBIAN
-       mkdir -p winterboard/Applications/WinterBoard.app
-       mkdir -p winterboard/Library/Themes
-       cp -a Nature winterboard/Library/Themes/com.saurik.WinterBoard.Nature
-       cp -a control preinst postinst prerm winterboard/DEBIAN
-       cp -a Test.sh WinterBoard.dylib WinterBoard Info.plist ../pledit/pledit winterboard/Applications/WinterBoard.app
-       dpkg-deb -b winterboard winterboard_0.9.2499-2_iphoneos-arm.deb
+       $(cycc) \
+           -framework UIKit \
+           -framework Foundation \
+           -framework CoreFoundation \
+           -framework CoreGraphics \
+           -framework Preferences \
+           -lobjc
+
+Optimize: Optimize.cpp makefile
+       $(cycc) $(filter %.cpp,$^)
+
+package: all
+       sudo ./package.sh
 
 .PHONY: all clean package