diff options
author | sr55 <[email protected]> | 2010-03-28 15:29:22 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-03-28 15:29:22 +0000 |
commit | b6d0623b5f63547b038d4b42a694023716c685fd (patch) | |
tree | 406026c68689c229fbb18aa5e5540a8dd73b22fb /pkg | |
parent | c90e79530930510a46275c0c24ca47ae8f9563b9 (diff) |
Build system now creates cli stage area for mingw
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3177 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/mingw/module.rules | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/pkg/mingw/module.rules b/pkg/mingw/module.rules index c09235378..8d075595d 100644 --- a/pkg/mingw/module.rules +++ b/pkg/mingw/module.rules @@ -1,5 +1,15 @@ pkg.create:: $(PKG.cli.zip)
$(PKG.cli.zip): | $(dir $(PKG.cli.zip))
-$(PKG.cli.zip): $(PKG.gui.zip)
- $(MV.exe) $(PKG.cli.tmp.zip) $(PKG.cli.zip)
+$(PKG.cli.zip): | $(STAGE.out.cli/)
+ $(STAGE.out.cli/)
+
+
+
+$(STAGE.out.cli/):
+ $(MKDIR.exe) -p $@
+ $(CP.exe) HandBrakeCLI.exe ./stage/cli
+ $(CP.exe) ../libraries/libgcc_s_sjlj-1.dll ./stage/cli
+ $(call STAGE.doc,$(STAGE.out.cli/))
+
+
|