summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-03-30 17:27:00 +0000
committersr55 <[email protected]>2007-03-30 17:27:00 +0000
commit8fec20a54998df78804fca118b36c61b7544890a (patch)
tree1429d9de010be78a397fd23d175b036aa3785280 /Makefile
parent6d76adbee7f4f4409ab0a90623a0ec910b8c3f83 (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 10 insertions, 1 deletions
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