diff options
author | Bradley Sepos <[email protected]> | 2018-01-10 07:13:22 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-01-10 07:44:29 -0500 |
commit | 059bd17f3360400f0675225919abf6b558a17a60 (patch) | |
tree | 22bd3a846cc4bc6c6934449f868c16274ffdda1b /macosx/module.xcodebuild | |
parent | 3d3120b693c89663f8016ddd2a30e5c5af404461 (diff) |
build: Add sign function to macosx module.
make sign ID="Developer ID"
Diffstat (limited to 'macosx/module.xcodebuild')
-rw-r--r-- | macosx/module.xcodebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/macosx/module.xcodebuild b/macosx/module.xcodebuild index b472b4da0..8f2f43dc7 100644 --- a/macosx/module.xcodebuild +++ b/macosx/module.xcodebuild @@ -1,10 +1,13 @@ ## This file is processed only when shunting build through xcodebuild -.PHONY: macosx.build macosx.archive macosx.clean macosx.install macosx.install-strip macosx.uninstall +.PHONY: macosx.build macosx.sign macosx.archive macosx.clean macosx.install macosx.install-strip macosx.uninstall macosx.build: $(call MACOSX.XCODE,HandBrakeCLI HandBrake,build) +macosx.sign: + $(call MACOSX.SIGN,HandBrakeCLI HandBrake,sign) + macosx.archive: $(call MACOSX.XCODE_ARCHIVE,HandBrake-Distribution,archive) @@ -28,6 +31,7 @@ macosx.uninstall: $(RM.exe) -f $(PREFIX/)bin/HandBrakeCLI build: macosx.build +sign: macosx.sign archive: macosx.archive clean: macosx.clean install: macosx.install @@ -37,7 +41,7 @@ xclean: clean ############################################################################### -MACOSX.goals = $(filter-out build archive clean install,$(MAKECMDGOALS)) +MACOSX.goals = $(filter-out build sign archive clean install,$(MAKECMDGOALS)) $(MACOSX.goals): __goals__ @true |