]> git.sesse.net Git - vlc/blob - extras/contrib/Makefile
* run 'make src' by default, since 'make bin' isn't and won't be available
[vlc] / extras / contrib / Makefile
1 # ***************************************************************************
2 # Makefile : Build vlc-contrib files
3 # ***************************************************************************
4 # Copyright (C) 2003-2005 the VideoLAN team
5 # $Id$
6
7 # Authors: Christophe Massiot <massiot@via.ecp.fr>
8 #          Derk-Jan Hartman <hartman at videolan dot org>
9
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or    
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23 # ***************************************************************************
24
25 include ./config.mak
26
27 BUILDDIRS = bin doc etc include info lib man sbin share vlc-lib tmp
28
29 all: FORCE
30 #       @echo "Do you mean to make src or make bin ?"
31         @echo "    'make bin' isn't functional at the moment,"
32         @echo "    running 'make src' instead..."
33         $(MAKE) src
34
35 src: FORCE
36         $(MAKE) -C src all
37
38 contrib-macosx.tar.bz2: FORCE
39         $(WGET) $(CONTRIB_URL)
40
41 bin: FORCE
42         @echo "make bin isn't in a functional state at this moment. Please use make src"
43
44 #The disabled make bin
45 #bin: contrib-macosx.tar.bz2
46 #       @if test -d tmp; then \
47 #               echo "Move away ./tmp, it's in the way" ; \
48 #               exit 1 ; \
49 #       fi
50 #       mkdir tmp
51 #       bunzip2 -c $< | (cd tmp; tar xf -)
52 #       ./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX)
53 #       (cd tmp; tar cf - .) | tar xf -
54 #       rm -rf tmp
55 #       ranlib lib/*\.a
56
57 clean-src: FORCE
58         rm -rf $(BUILDDIRS)
59         $(MAKE) -C src clean-src
60
61 clean-bin: FORCE
62         rm -rf $(BUILDDIRS)
63         $(MAKE) -C src clean-dots
64
65 clean: FORCE
66 #       @echo "    Do you mean to clean-src or clean-bin ?"
67         @echo "    'make bin' isn't available at the moment"
68         @echo "    you probably wanna run 'make clean-src' then"
69         @echo "    you can still run 'make clean-bin' manually if needed"
70         $(MAKE) clean-src
71
72 package: FORCE
73         @if test -d tmp; then \
74                 echo "Move away ./tmp, it's in the way" ; \
75                 exit 1 ; \
76         fi
77         mkdir tmp
78         tar cf - bin sbin include lib vlc-lib share/aclocal* share/autoconf* \
79                 share/automake* share/gettext* \
80                 | (cd tmp; tar xf -)
81         ./change_prefix.sh tmp $(PREFIX) @@CONTRIB_PREFIX@@
82         (cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2
83         rm -rf tmp
84
85 FORCE: