X-Git-Url: https://git.saurik.com/winterboard.git/blobdiff_plain/26c43b47c1020faa78c7ce6559c9d1f8319b7007..e542b0cadfe7bb42d8d18f93d9c743209c8c82c0:/makefile diff --git a/makefile b/makefile index e31d086..ed1c9b9 100644 --- a/makefile +++ b/makefile @@ -4,25 +4,32 @@ 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 +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 -I../mobilesubstrate -L../mobilesubstrate -lsubstrate -framework UIKit -multiply_defined suppress + +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: Application.mm makefile - $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc -framework CoreGraphics + $(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 - 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 + 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 .PHONY: all clean package