X-Git-Url: https://git.saurik.com/winterboard.git/blobdiff_plain/08454e3a0ad71f6e613171e9e6689dc48e18f15f..ca13798d8bb053ba23e057d6b9e056bc747b61d2:/makefile diff --git a/makefile b/makefile index 4310cb7..6ae658a 100644 --- a/makefile +++ b/makefile @@ -4,13 +4,16 @@ else target := $(PKG_TARG)- endif -all: WinterBoard WinterBoard.dylib +all: WinterBoard WinterBoard.dylib UIImages clean: - rm -f WinterBoard WinterBoard.dylib + rm -f WinterBoard WinterBoard.dylib UIImages 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 + $(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 -framework CoreGraphics + +UIImages: UIImages.mm makefile + $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc WinterBoard: Application.mm makefile $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc -framework CoreGraphics @@ -22,7 +25,7 @@ package: 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 icon.png WinterBoard.dylib WinterBoard Info.plist ../pledit/pledit winterboard/Applications/WinterBoard.app - dpkg-deb -b winterboard winterboard_0.9.2501-2_iphoneos-arm.deb + cp -a Test.sh icon.png WinterBoard.dylib WinterBoard UIImages Info.plist ../pledit/pledit winterboard/Applications/WinterBoard.app + dpkg-deb -b winterboard winterboard_0.9.2504-1_iphoneos-arm.deb .PHONY: all clean package