1 # ***************************************************************************
2 # Makefile : Build vlc-contrib files
3 # ***************************************************************************
4 # Copyright (C) 2003-2006 the VideoLAN team
7 # Authors: Christophe Massiot <massiot@via.ecp.fr>
8 # Derk-Jan Hartman <hartman at videolan dot org>
9 # Christophe Mutricy <xtophe at videolan dot org>
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2 of the License, or
14 # (at your option) any later version.
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24 # ***************************************************************************
28 BUILDDIRS = bin doc etc include info lib man sbin share vlc-lib tmp gecko-sdk
30 ifdef HAVE_DARWIN_OS_ON_INTEL
47 contrib-macosx-$(ARCH)-$(CONTRIBREV).tar.bz2:
48 $(WGET) ftp://ftp.videolan.org/pub/videolan/testing/contrib/$@
50 using-bin: contrib-macosx-$(ARCH)-$(CONTRIBREV).tar.bz2
51 @if test -d tmp; then \
52 echo "Move away ./tmp, it's in the way" ; \
56 (cd tmp && tar jxvf ../$<)
57 ./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX)
58 for dir in `(cd tmp && find . -type d)`; do mkdir -p -- $$dir; done
59 for i in `(cd tmp && find . -not -type d)`; do mv -f tmp/$$i $$i; done
65 $(MAKE) -C src clean-src
69 $(MAKE) -C src clean-dots
73 rm -rf config.mak distro.mak
78 @if test -d tmp; then \
79 echo "Move away ./tmp, it's in the way" ; \
83 tar cf - bin sbin include lib vlc-lib share/aclocal* share/autoconf* \
84 share/automake* share/gettext* \
86 ./change_prefix.sh tmp $(PREFIX) @@CONTRIB_PREFIX@@
87 (cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2
93 @if test -d tmp; then \
94 echo "Move away ./tmp, it's in the way" ; \
97 mkdir -p tmp/$(DISTDIR)
98 tar cf - --dereference bin sbin include lib share/aclocal*\
99 share/autoconf* share/qt4* \
100 share/automake* share/gettext* gecko-sdk\
101 | (cd tmp/$(DISTDIR); tar xpf -)
103 mkdir -p tmp/$(DISTDIR)/live.com
104 for i in groupsock liveMedia UsageEnvironment BasicUsageEnvironment; do \
105 mkdir -p tmp/$(DISTDIR)/live.com/$$i/include; \
106 cp -r src/live/$$i/include tmp/$(DISTDIR)/live.com/$$i; \
107 cp src/live/$$i/lib$${i}.a tmp/$(DISTDIR)/live.com/$$i; \
110 ./change_prefix.sh tmp $(PREFIX) $(DISTDIR)
112 (cd tmp/$(DISTDIR)/bin; mv uic.exe uic.ex; mv rcc.exe rcc.ex; mv moc.exe moc.ex)
113 # Remove unused and potentially harmful files
114 (cd tmp/$(DISTDIR)/bin; rm -rfv *.exe; chmod a+x *)
116 (cd tmp/$(DISTDIR)/bin; mv uic.ex uic.exe; mv rcc.ex rcc.exe; mv moc.ex moc.exe)
118 (cd tmp; tar cf - $(DISTDIR)) | bzip2 -c > contrib-`date +%Y%m%d`-win32-bin-gcc-`$(CC) --version|head -n 1|cut -f 3 -d ' '`-runtime-`/bin/echo -e "#include <_mingw.h>\n__MINGW32_VERSION"|$(CC) -E -|grep -v ^#|grep -v ' '`-only.tar.bz2
121 .PHONY: all clean-src clean-bin clean package-macosx package-win32