X-Git-Url: https://git.saurik.com/winterboard.git/blobdiff_plain/cf8bb1d42003ff0f116bac4db1ac2397bfa86bba..edbc302243889cb701151f0c06d06cd31c1b7023:/makefile diff --git a/makefile b/makefile index 2b58b06..0629bab 100644 --- a/makefile +++ b/makefile @@ -1,18 +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.dylib + rm -f WinterBoard WinterBoard.dylib + +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 + $(cycc) \ + -framework UIKit \ + -framework Foundation \ + -framework CoreFoundation \ + -framework CoreGraphics \ + -framework Preferences \ + -lobjc -WinterBoard: *.mm makefile - $(target)gcc -fobjc-call-cxx-cdtors -bundle -g3 -O2 -Wall -Werror -o $@ $(filter %.mm,$^) -framework CoreFoundation -framework Foundation -framework UIKit -lobjc -fobjc-exceptions -flat_namespace -undefined suppress -I../uicaboodle.m +Optimize: Optimize.cpp makefile + $(cycc) $(filter %.cpp,$^) -WinterBoard.dylib: Initialization.m makefile - $(target)gcc -dynamiclib -g3 -O2 -Wall -Werror -o $@ $(filter %.m,$^) -framework CoreFoundation -framework Foundation -lobjc -init _WBInitialize +package: all + sudo ./package.sh -.PHONY: all clean +.PHONY: all clean package