From 8fec20a54998df78804fca118b36c61b7544890a Mon Sep 17 00:00:00 2001 From: sr55 Date: Fri, 30 Mar 2007 17:27:00 +0000 Subject: [PATCH] make HandbrakeCLI will make Handbrake without building all the contrib binaries. These will be downloaded. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@467 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 76610212d..0f7cd21c1 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ include Makefile.config SYSTEM = $(shell uname -s) # Special case for Mac OS X: everything is handled from the Xcode project + ifeq ($(SYSTEM),Darwin) all: clean app @@ -49,7 +50,13 @@ endif ifeq ($(SYSTEM),CYGWIN_NT-5.1) -all: contrib/.contrib libhb/libhb.a HandbrakeCLI +all: contrib/.contrib libhb/libhb.a + + +app: + (./DownloadCygWinContribBinaries.sh) +HandbrakeCLI: app libhb/libhb.a + contrib/.contrib: @$(MAKE) --no-print-directory -C contrib all @@ -59,7 +66,9 @@ libhb/libhb.a: HandbrakeCLI: @$(MAKE) --no-print-directory -C test all + + clean: @$(MAKE) --no-print-directory -C libhb clean @$(MAKE) --no-print-directory -C test clean -- 2.40.0