mirror of
https://github.com/xweiba/location-spoofer.git
synced 2026-09-21 22:30:46 +08:00
18 lines
358 B
Makefile
18 lines
358 B
Makefile
.PHONY: setup core ipa-unsigned verify-ipa test
|
|
|
|
setup:
|
|
./Scripts/setup.sh
|
|
|
|
core:
|
|
./Scripts/build-core.sh
|
|
|
|
ipa-unsigned: core
|
|
./Scripts/build-unsigned-ipa.sh
|
|
|
|
verify-ipa:
|
|
@test -n "$(IPA)" || (echo "Usage: make verify-ipa IPA=/absolute/path/to/signed.ipa" >&2; exit 2)
|
|
./Scripts/verify-ipa.sh --signed "$(IPA)"
|
|
|
|
test:
|
|
./Tests/run_all_contract_tests.sh
|