X-Git-Url: https://git.saurik.com/winterboard.git/blobdiff_plain/8e65ed9fc8d6e94f26885ef8237f00d3492e7a60..95a5777bab9f18d4307f69495671a1f595ceca86:/makefile diff --git a/makefile b/makefile index 25a3974..d42711c 100644 --- a/makefile +++ b/makefile @@ -10,10 +10,10 @@ clean: 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 -framework CoreGraphics + $(target)g++ -dynamiclib -g0 -O2 -Wall -o $@ $(filter %.mm,$^) -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 + $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc -I/apl/inc/iPhoneOS-2.0 WinterBoard: Application.mm makefile $(target)g++ -g0 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework UIKit -framework Foundation -framework CoreFoundation -lobjc -framework CoreGraphics @@ -23,9 +23,12 @@ package: 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 icon.png WinterBoard.dylib WinterBoard UIImages Info.plist ../pledit/pledit winterboard/Applications/WinterBoard.app - dpkg-deb -b winterboard winterboard_0.9.2505-1_iphoneos-arm.deb + mkdir -p winterboard/Library/MobileSubstrate/DynamicLibraries + ln -s /Applications/WinterBoard.app/WinterBoard.dylib 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_0.9.2526-1_iphoneos-arm.deb .PHONY: all clean package