[vlc-devel] commit: contrib: 'make' is now 'make using-bin' on Mac OS X/intel (Pierre d 'Herbemont )
git version control
git at videolan.org
Mon Sep 22 22:31:55 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Mon Sep 22 22:29:18 2008 +0200| [1a67c58c908aedf022ba8e4db536b876d2886540] | committer: Pierre d'Herbemont
contrib: 'make' is now 'make using-bin' on Mac OS X/intel
Use 'make using-src' or 'make src' to build from source. Then 'make package-macosx' to generate a contrib package. This package has to be uploaded to ftp.videolan.org/pub/videolan/testing/contrib/package-macosx-ARCH-REV.tar.bz2. And update the contrib Makefile to use the new REV.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1a67c58c908aedf022ba8e4db536b876d2886540
---
extras/contrib/Makefile | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/extras/contrib/Makefile b/extras/contrib/Makefile
index 4d7a2bc..edb9e8b 100644
--- a/extras/contrib/Makefile
+++ b/extras/contrib/Makefile
@@ -27,9 +27,20 @@ include ./config.mak
BUILDDIRS = bin doc etc include info lib man sbin share vlc-lib tmp gecko-sdk
-all:
+ifdef HAVE_DARWIN_OS_ON_INTEL
+TARGETALL=using-bin
+else
+TARGETALL=using-src
+endif
+
+all: $(TARGETALL)
+
+using-src:
$(MAKE) -C src
+# shortcut
+src: using-src
+
ifdef HAVE_DARWIN_OS
CONTRIBREV=20080922
More information about the vlc-devel
mailing list