X-Git-Url: https://git.saurik.com/winterboard.git/blobdiff_plain/d806256e4ac8a0f9812b8cd98bc7ab28022548d9..535a2babe865553e7d60a9045f9a3de4cbc4ca4c:/makefile?ds=sidebyside diff --git a/makefile b/makefile index b23bf2c..a18cd8e 100644 --- a/makefile +++ b/makefile @@ -1,35 +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 -Xarch_armv6 -marm -all: WinterBoard WinterBoard.dylib UIImages +substrate := -I../substrate -L../substrate -lsubstrate + +all: WinterBoard WinterBoard.dylib WinterBoardSettings Optimize clean: - rm -f WinterBoard WinterBoard.dylib UIImages + rm -f WinterBoard WinterBoard.dylib -WinterBoard.dylib: Library.mm makefile ../mobilesubstrate/substrate.h - $(target)g++ -dynamiclib -g0 -O2 -Wall -o $@ $(filter %.mm,$^) -framework CoreFoundation -framework Foundation -lobjc -init _WBInitialize -I/apl/inc/iPhoneOS-2.0 -framework CoreGraphics -framework GraphicsServices -framework Celestial -I../mobilesubstrate -L../mobilesubstrate -lsubstrate -framework UIKit -multiply_defined suppress -F$(PKG_ROOT)/System/Library/PrivateFrameworks +WinterBoardSettings: Settings.mm makefile + $(cycc) -dynamiclib \ + -framework UIKit \ + -framework CoreFoundation \ + -framework Foundation \ + -framework CoreGraphics \ + -framework Preferences \ + -lobjc -UIImages: UIImages.mm makefile - $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc -I/apl/inc/iPhoneOS-2.0 -multiply_defined suppress +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 -I/apl/sdk -multiply_defined suppress - -package: - rm -rf winterboard - mkdir -p winterboard/DEBIAN - mkdir -p winterboard/Applications/WinterBoard.app - mkdir -p winterboard/Library/Themes - mkdir -p winterboard/Library/MobileSubstrate/DynamicLibraries - ln -s /Applications/WinterBoard.app/WinterBoard.dylib winterboard/Library/MobileSubstrate/DynamicLibraries - cp -a WinterBoard.plist winterboard/Library/MobileSubstrate/DynamicLibraries - cp -a *.theme winterboard/Library/Themes - find winterboard/Library/Themes -name .svn | while read -r line; do rm -rf "$${line}"; done - cp -a control preinst prerm winterboard/DEBIAN - cp -a Test.sh icon.png WinterBoard.dylib WinterBoard UIImages Info.plist winterboard/Applications/WinterBoard.app - dpkg-deb -b winterboard winterboard_$(shell grep ^Version: control | cut -d ' ' -f 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