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
31 # @echo "Do you mean to make src or make bin ?"
32 @echo " 'make bin' isn't functional at the moment,"
33 @echo " running 'make src' instead..."
39 contrib-macosx.tar.bz2: FORCE
40 $(WGET) $(CONTRIB_URL)
43 @echo "make bin isn't in a functional state at this moment. Please use make src"
45 #The disabled make bin
46 #bin: contrib-macosx.tar.bz2
47 # @if test -d tmp; then \
48 # echo "Move away ./tmp, it's in the way" ; \
52 # bunzip2 -c $< | (cd tmp; tar xf -)
53 # ./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX)
54 # (cd tmp; tar cf - .) | tar xf -
60 $(MAKE) -C src clean-src
64 $(MAKE) -C src clean-dots
67 # @echo " Do you mean to clean-src or clean-bin ?"
68 @echo " 'make bin' isn't available at the moment"
69 @echo " you probably wanna run 'make clean-src' then"
70 @echo " you can still run 'make clean-bin' manually if needed"
72 rm -rf config.mak distro.mak
75 @if test -d tmp; then \
76 echo "Move away ./tmp, it's in the way" ; \
80 tar cf - bin sbin include lib vlc-lib share/aclocal* share/autoconf* \
81 share/automake* share/gettext* \
83 ./change_prefix.sh tmp $(PREFIX) @@CONTRIB_PREFIX@@
84 (cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2
90 @if test -d tmp; then \
91 echo "Move away ./tmp, it's in the way" ; \
94 mkdir -p tmp/$(DISTDIR)
95 tar cf - --dereference bin sbin include lib share/aclocal*\
97 share/automake* share/gettext* gecko-sdk\
98 | (cd tmp/$(DISTDIR); tar xpf -)
100 mkdir -p tmp/$(DISTDIR)/live.com
101 for i in groupsock liveMedia UsageEnvironment BasicUsageEnvironment; do \
102 mkdir -p tmp/$(DISTDIR)/live.com/$$i/include; \
103 cp -r src/live/$$i/include tmp/$(DISTDIR)/live.com/$$i; \
104 cp src/live/$$i/lib$${i}.a tmp/$(DISTDIR)/live.com/$$i; \
107 ./change_prefix.sh tmp $(PREFIX) $(DISTDIR)
109 (cd tmp/$(DISTDIR)/bin; mv uic.exe uic.ex; mv rcc.exe rcc.ex; mv moc.exe moc.ex)
110 # Remove unused and potentially harmful files
111 (cd tmp/$(DISTDIR)/bin; rm -rfv *.exe; chmod a+x *)
113 (cd tmp/$(DISTDIR)/bin; mv uic.ex uic.exe; mv rcc.ex rcc.exe; mv moc.ex moc.exe)
115 (cd tmp; tar cf - $(DISTDIR)) | bzip2 -c > contrib-`date +%Y%m%d`-win32-bin-gcc-`$(CC) --version|head -n 1|cut -f 3 -d ' '`-only.tar.bz2