Skip to content

Commit 2410477

Browse files
authored
refactor: splitting devicekit-ios into h264 repository (#47)
1 parent 0bd68f8 commit 2410477

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

Makefile

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,23 @@ CODE_SIGN_IDENTITY ?= Apple Development
1515
# Export method for IPA (development, ad-hoc, app-store, enterprise)
1616
EXPORT_METHOD ?= development
1717

18-
.PHONY: clean build archive ipa-unsigned sim-zip-arm64 sim-zip-x86_64 sim-zip sim-install test-coverage coverage-html lint
18+
.PHONY: help clean build archive ipa-unsigned sim-zip-arm64 sim-zip-x86_64 sim-zip sim-install test-coverage coverage-html lint
19+
20+
.DEFAULT_GOAL := help
21+
22+
help:
23+
@echo "Available targets:"
24+
@echo " sim-zip Build XCUITest runner zips for both arm64 and x86_64 simulators"
25+
@echo " sim-zip-arm64 Build XCUITest runner zip for iOS Simulator (arm64 / Apple Silicon)"
26+
@echo " sim-zip-x86_64 Build XCUITest runner zip for iOS Simulator (x86_64 / Intel)"
27+
@echo " sim-install Build and install on the currently booted simulator"
28+
@echo " ipa-unsigned Build unsigned IPA with XCUITest runner for real iOS devices"
29+
@echo " debug Build with Debug configuration"
30+
@echo " release Build with Release configuration"
31+
@echo " clean Remove build artifacts"
32+
@echo " test-coverage Run tests with code coverage"
33+
@echo " coverage-html Generate HTML coverage report (run after test-coverage)"
34+
@echo " lint Run SwiftLint"
1935

2036
clean:
2137
@echo "Cleaning build artifacts..."

0 commit comments

Comments
 (0)