]> git.sesse.net Git - vlc/blob - extras/contrib/Makefile
edb9e8bd08b1129be733cfc485dadc8fe0a5ef3a
[vlc] / extras / contrib / Makefile
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>
10
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.
15 #
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.
20 #
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 # ***************************************************************************
25
26 include ./config.mak
27
28 BUILDDIRS = bin doc etc include info lib man sbin share vlc-lib tmp gecko-sdk
29
30 ifdef HAVE_DARWIN_OS_ON_INTEL
31 TARGETALL=using-bin
32 else
33 TARGETALL=using-src
34 endif
35
36 all: $(TARGETALL)
37
38 using-src:
39         $(MAKE) -C src
40
41 # shortcut
42 src: using-src
43
44 ifdef HAVE_DARWIN_OS
45
46 CONTRIBREV=20080922
47 contrib-macosx-$(ARCH)-$(CONTRIBREV).tar.bz2:
48         $(WGET) ftp://ftp.videolan.org/pub/videolan/testing/contrib/contrib-macosx-$(ARCH)-$(CONTRIBREV).tar.bz2
49
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" ; \
53                 exit 1 ; \
54         fi
55         mkdir tmp
56         (cd tmp && tar jxvf ../contrib-macosx.tar.bz2)
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
60         rm -rf tmp
61 endif
62
63 clean-src:
64         rm -rf $(BUILDDIRS)
65         $(MAKE) -C src clean-src
66
67 clean-bin:
68         rm -rf $(BUILDDIRS)
69         $(MAKE) -C src clean-dots
70
71 clean:
72         $(MAKE) clean-src
73         rm -rf config.mak distro.mak
74
75 bin: using-bin
76
77 package-macosx:
78         @if test -d tmp; then \
79                 echo "Move away ./tmp, it's in the way" ; \
80                 exit 1 ; \
81         fi
82         mkdir tmp
83         tar cf - bin sbin include lib vlc-lib share/aclocal* share/autoconf* \
84                 share/automake* share/gettext* \
85                 | (cd tmp; tar xf -)
86         ./change_prefix.sh tmp $(PREFIX) @@CONTRIB_PREFIX@@
87         rm -rf tmp
88
89 DISTDIR = usr/win32
90
91 package-win32:
92         @if test -d tmp; then \
93                 echo "Move away ./tmp, it's in the way" ; \
94                 exit 1 ; \
95         fi
96         mkdir -p tmp/$(DISTDIR)
97         tar cf - --dereference bin sbin include lib share/aclocal*\
98                 share/autoconf* share/qt4* \
99                 share/automake* share/gettext* gecko-sdk\
100                 | (cd tmp/$(DISTDIR); tar xpf -)
101 #kludge for live.com
102         mkdir -p tmp/$(DISTDIR)/live.com
103         for i in groupsock liveMedia UsageEnvironment BasicUsageEnvironment; do \
104                 mkdir -p  tmp/$(DISTDIR)/live.com/$$i/include; \
105                 cp -r src/live/$$i/include tmp/$(DISTDIR)/live.com/$$i; \
106                 cp src/live/$$i/lib$${i}.a  tmp/$(DISTDIR)/live.com/$$i; \
107         done;
108 # Change Prefix.
109         ./change_prefix.sh tmp $(PREFIX) $(DISTDIR)
110 # Hack for qt4
111         (cd tmp/$(DISTDIR)/bin; mv uic.exe uic.ex; mv rcc.exe rcc.ex; mv moc.exe moc.ex)
112 #       Remove unused and potentially harmful files     
113         (cd tmp/$(DISTDIR)/bin; rm -rfv *.exe; chmod a+x *)
114 # Hack for qt4
115         (cd tmp/$(DISTDIR)/bin; mv uic.ex uic.exe; mv rcc.ex rcc.exe; mv moc.ex moc.exe)
116 # Tar it.
117         (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
118         rm -rf tmp
119
120 .PHONY: all clean-src clean-bin clean package-macosx package-win32