Also refactor test.* convenience targets for Darwin/Mac.
Configure parameter --prefix now sets HandBrakeCLI install directory [/usr/local] like on other systems.
New configure parameter --xcode-prefix sets HandBrake.app install directory [/Applications]. Not used on other systems.
$(eval $(call import.MODULE.rules,MACOSX))
+build: macosx.build
+install: macosx.install
+uninstall: macosx.uninstall
+clean: macosx.clean
+xclean: macosx.xclean
+
+########################################
+# sync with ../test/module.rules #
+########################################
+test.install-strip: | $(dir $(TEST.install.exe))
+ $(CP.exe) $(TEST.exe) $(TEST.install.exe)
+ $(STRIP.exe) $(TEST.install.exe)
+
+test.install: | $(dir $(TEST.install.exe))
+ $(CP.exe) $(TEST.exe) $(TEST.install.exe)
+
+test.uninstall:
+ $(RM.exe) -f $(TEST.install.exe)
+
+test.clean:
+ $(RM.exe) -f $(TEST.out)
+
+test.xclean: test.clean
+########################################
+
macosx.build: $(MACOSX.m4.out)
macosx.build: $(MACOSX.osl.filelist)
+macosx.install: test.install
+macosx.uninstall: test.uninstall
+
macosx.clean:
$(RM.exe) -f $(MACOSX.m4.out)
$(RM.exe) -f $(MACOSX.osl.filelist)
$(RM.exe) -rf $(MACOSX.build/)
$(RM.exe) -rf $(MACOSX.xroot/)
-test.clean:
- $(RM.exe) -f $(MACOSX.xroot/)HandBrakeCLI
- $(RM.exe) -rf $(MACOSX.xroot/)HandBrakeCLI.dSYM
- $(RM.exe) -rf $(MACOSX.xroot/)HandBrakeCLI.build
-
-test.xclean: test.clean
-
$(MACOSX.m4.out): $(BUILD/)project/handbrake.m4
$(MACOSX.m4.out): | $(dir $(MACOSX.m4.out))
$(MACOSX.m4.out): $(MACOSX.build/)%: $(MACOSX.src/)%.m4
@echo "creating $@"
@> $@
$(foreach i,$(foreach m,$(MODULES.NAMES),$($m.OSL.files)),$(call fn.PRINTLN,@echo $i >> $@))
-
-###############################################################################
-
-clean: macosx.clean
-build: macosx.build
## This file is processed only when shunting build through xcodebuild
-.PHONY: macosx.build macosx.clean macosx.install
+.PHONY: macosx.build macosx.clean macosx.install macosx.install-strip macosx.uninstall
macosx.build:
$(call MACOSX.XCODE,HandBrakeCLI HandBrake,build)
$(call MACOSX.XCODE,HandBrakeCLI HandBrake,clean)
macosx.install:
- $(call MACOSX.XCODE,HandBrakeCLI HandBrake,install)
+ $(RM.exe) -rf $(XCODE.prefix/)HandBrake.app
+ $(CP.exe) -R $(MACOSX.xroot/)HandBrake.app $(XCODE.prefix/)
+ $(CP.exe) $(MACOSX.xroot/)HandBrakeCLI $(PREFIX/)bin/
+
+macosx.install-strip:
+ $(RM.exe) -rf $(XCODE.prefix/)HandBrake.app
+ $(CP.exe) -R $(MACOSX.xroot/)HandBrake.app $(XCODE.prefix/)
+ $(STRIP.exe) $(XCODE.prefix/)HandBrake.app/Contents/MacOS/HandBrake
+ $(CP.exe) $(MACOSX.xroot/)HandBrakeCLI $(PREFIX/)bin/
+ $(STRIP.exe) $(PREFIX/)bin/HandBrakeCLI
+
+macosx.uninstall:
+ $(RM.exe) -rf $(XCODE.prefix/)HandBrake.app
+ $(RM.exe) -f $(PREFIX/)bin/HandBrakeCLI
build: macosx.build
clean: macosx.clean
install: macosx.install
+install-strip: macosx.install-strip
+uninstall: macosx.uninstall
xclean: clean
###############################################################################
self.build_final = os.curdir
self.src_final = self._final_dir( self.build_dir, self.src_dir )
self.prefix_final = self._final_dir( self.build_dir, self.prefix_dir )
+ if host.match( '*-*-darwin*' ):
+ self.xcode_prefix_final = self._final_dir( self.build_dir, self.xcode_prefix_dir )
self.infof( 'compute: makevar SRC/ = %s\n', self.src_final )
self.infof( 'compute: makevar BUILD/ = %s\n', self.build_final )
self.infof( 'compute: makevar PREFIX/ = %s\n', self.prefix_final )
+ if host.match( '*-*-darwin*' ):
+ self.infof( 'compute: makevar XCODE.prefix/ = %s\n', self.xcode_prefix_final )
## perform chdir and enable log recording
def chdir( self ):
self.src_dir = os.path.normpath( options.src )
self.build_dir = os.path.normpath( options.build )
self.prefix_dir = os.path.normpath( options.prefix )
+ if host.match( '*-*-darwin*' ):
+ self.xcode_prefix_dir = os.path.normpath( options.xcode_prefix )
if options.sysroot != None:
self.sysroot_dir = os.path.normpath( options.sysroot )
else:
grp = OptionGroup( cli, 'Xcode Options' )
grp.add_option( '--disable-xcode', default=False, action='store_true',
help='disable Xcode' )
+ grp.add_option( '--xcode-prefix', default=cfg.xcode_prefix_dir, action='store', metavar='DIR',
+ help='specify install dir for Xcode products [%s]' % (cfg.xcode_prefix_dir) )
grp.add_option( '--xcode-symroot', default='xroot', action='store', metavar='DIR',
help='specify root of the directory hierarchy that contains product files and intermediate build files' )
xcconfigMode.cli_add_option( grp, '--xcode-config' )
cfg = Configure( verbose )
host = HostTupleProbe(); host.run()
- cfg.prefix_dir = ForHost( '/usr/local', ['/Applications','*-*-darwin*'] ).value
+ cfg.prefix_dir = '/usr/local'
+ if host.match( '*-*-darwin*' ):
+ cfg.xcode_prefix_dir = '/Applications'
build = BuildAction()
arch = ArchAction(); arch.run()
if not Tools.xcodebuild.fail and not options.disable_xcode:
doc.addBlank()
+ doc.add( 'XCODE.prefix', cfg.xcode_prefix_final )
+ doc.add( 'XCODE.prefix/', cfg.xcode_prefix_final + os.sep )
doc.add( 'XCODE.driver', options.xcode_driver )
if os.path.isabs(options.xcode_symroot):
doc.add( 'XCODE.symroot', options.xcode_symroot )
$(eval $(call import.MODULE.rules,TEST))
-test.build: $(TEST.exe)
-
-$(TEST.exe): | $(dir $(TEST.exe))
-$(TEST.exe): $(TEST.c.o)
- $(call TEST.GCC.EXE++,$@,$^ $(TEST.libs))
-
-$(TEST.c.o): $(LIBHB.a)
-$(TEST.c.o): | $(dir $(TEST.c.o))
-$(TEST.c.o): $(BUILD/)%.o: $(SRC/)%.c
- $(call TEST.GCC.C_O,$@,$<)
-
-test.clean:
- $(RM.exe) -f $(TEST.out)
-
-###############################################################################
-
build: test.build
+install: test.install
+install-strip: test.install-strip
+uninstall: test.uninstall
clean: test.clean
+xclean: test.xclean
-###############################################################################
-
-## skip install/uninstall on darwin
-ifneq ($(BUILD.system),darwin)
+test.build: $(TEST.exe)
+########################################
+# sync with ../macosx/module.rules #
+########################################
test.install-strip: | $(dir $(TEST.install.exe))
$(CP.exe) $(TEST.exe) $(TEST.install.exe)
$(STRIP.exe) $(TEST.install.exe)
test.uninstall:
$(RM.exe) -f $(TEST.install.exe)
-install-strip: test.install-strip
-install: test.install
-uninstall: test.uninstall
+test.clean:
+ $(RM.exe) -f $(TEST.out)
+
+test.xclean: test.clean
+########################################
-endif
+$(TEST.exe): | $(dir $(TEST.exe))
+$(TEST.exe): $(TEST.c.o)
+ $(call TEST.GCC.EXE++,$@,$^ $(TEST.libs))
+
+$(TEST.c.o): $(LIBHB.a)
+$(TEST.c.o): | $(dir $(TEST.c.o))
+$(TEST.c.o): $(BUILD/)%.o: $(SRC/)%.c
+ $(call TEST.GCC.C_O,$@,$<)