14 lines
447 B
Makefile
14 lines
447 B
Makefile
TARGET = Undecimus
|
|
|
|
.PHONY: all clean
|
|
|
|
all: clean
|
|
xcodebuild clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO PRODUCT_BUNDLE_IDENTIFIER="science.xnu.undecimus" -sdk iphoneos -configuration Debug
|
|
ln -sf build/Debug-iphoneos Payload
|
|
# strip Payload/$(TARGET).app/$(TARGET)
|
|
ldid -SUndecimus/multi_path.entitlements Payload/$(TARGET).app/$(TARGET)
|
|
zip -r9 $(TARGET).ipa Payload/$(TARGET).app
|
|
|
|
clean:
|
|
rm -rf build Payload $(TARGET).ipa
|