]> git.sesse.net Git - vlc/blob - extras/contrib/Makefile
Make Zorglub less unhappy
[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
32 src: FORCE
33         $(MAKE) -C src all
34
35 contrib-macosx.tar.bz2: FORCE
36         $(WGET) $(CONTRIB_URL)
37
38 bin: FORCE
39         @echo "make bin isn't in a functional state at this moment. Please use make src"
40
41 #The disabled make bin
42 #bin: contrib-macosx.tar.bz2
43 #       @if test -d tmp; then \
44 #               echo "Move away ./tmp, it's in the way" ; \
45 #               exit 1 ; \
46 #       fi
47 #       mkdir tmp
48 #       bunzip2 -c $< | (cd tmp; tar xf -)
49 #       ./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX)
50 #       (cd tmp; tar cf - .) | tar xf -
51 #       rm -rf tmp
52 #       ranlib lib/*\.a
53
54 clean-src: FORCE
55         rm -rf $(BUILDDIRS)
56         $(MAKE) -C src clean-src
57
58 clean-bin: FORCE
59         rm -rf $(BUILDDIRS)
60         $(MAKE) -C src clean-dots
61
62 clean: FORCE
63         @echo "Do you mean to clean-src or clean-bin ?"
64
65 package: FORCE
66         @if test -d tmp; then \
67                 echo "Move away ./tmp, it's in the way" ; \
68                 exit 1 ; \
69         fi
70         mkdir tmp
71         tar cf - bin sbin include lib vlc-lib share/aclocal* share/autoconf* \
72                 share/automake* share/gettext* \
73                 | (cd tmp; tar xf -)
74         ./change_prefix.sh tmp $(PREFIX) @@CONTRIB_PREFIX@@
75         (cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2
76         rm -rf tmp
77
78 FORCE: