Fix libtwolame contrib:
[vlc.git] / extras / contrib / Makefile
blob2c6065a4ca4994b61d32e885971224f74a71074c
1 # ***************************************************************************
2 # Makefile : Build vlc-contrib files
3 # ***************************************************************************
4 # Copyright (C) 2003-2006 the VideoLAN team
5 # $Id$
6 #
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 # ***************************************************************************
26 include ./config.mak
28 BUILDDIRS = bin doc etc include info lib man sbin share vlc-lib tmp gecko-sdk
30 all: FORCE
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..."
34 $(MAKE) src
36 src: FORCE
37 $(MAKE) -C src all
39 contrib-macosx.tar.bz2: FORCE
40 $(WGET) $(CONTRIB_URL)
42 bin: FORCE
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" ; \
49 # exit 1 ; \
50 # fi
51 # mkdir tmp
52 # bunzip2 -c $< | (cd tmp; tar xf -)
53 # ./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX)
54 # (cd tmp; tar cf - .) | tar xf -
55 # rm -rf tmp
56 # ranlib lib/*\.a
58 clean-src: FORCE
59 rm -rf $(BUILDDIRS)
60 $(MAKE) -C src clean-src
62 clean-bin: FORCE
63 rm -rf $(BUILDDIRS)
64 $(MAKE) -C src clean-dots
66 clean: FORCE
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"
71 $(MAKE) clean-src
73 package-macosx: FORCE
74 @if test -d tmp; then \
75 echo "Move away ./tmp, it's in the way" ; \
76 exit 1 ; \
78 mkdir tmp
79 tar cf - bin sbin include lib vlc-lib share/aclocal* share/autoconf* \
80 share/automake* share/gettext* \
81 | (cd tmp; tar xf -)
82 ./change_prefix.sh tmp $(PREFIX) @@CONTRIB_PREFIX@@
83 (cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2
84 rm -rf tmp
86 package-win32: FORCE
87 @if test -d tmp; then \
88 echo "Move away ./tmp, it's in the way" ; \
89 exit 1 ; \
91 mkdir -p tmp/usr/win32
92 tar cf - --dereference bin sbin include lib share/aclocal*\
93 share/autoconf* \
94 share/automake* share/gettext* gecko-sdk\
95 | (cd tmp/usr/win32; tar xpf -)
96 #kludge for live.com
97 mkdir -p tmp/usr/win32/live.com
98 for i in groupsock liveMedia UsageEnvironment BasicUsageEnvironment; do \
99 mkdir -p tmp/usr/win32/live.com/$$i/include; \
100 cp -r src/live/$$i/include tmp/usr/win32/live.com/$$i; \
101 cp src/live/$$i/lib$${i}.a tmp/usr/win32/live.com/$$i; \
102 done;
103 ./change_prefix.sh tmp $(PREFIX) /usr/win32
104 # Klugy kludge
105 (cd tmp/usr/win32/bin; rm -f *.exe; chmod a+x *)
106 (cd tmp; tar cf - usr/win32/) | bzip2 -c > contrib-`date +%Y%m%d`-win32-bin-gcc-`$(CC) --version|head -n 1|cut -f 3 -d ' '`-only.tar.bz2
107 rm -rf tmp
108 FORCE: