]> git.sesse.net Git - vlc/blob - Makefile
* Added proper Conflicts: rules in debian/control.
[vlc] / Makefile
1 ###############################################################################
2 # vlc (VideoLAN Client) main Makefile - (c)1998 VideoLAN
3 ###############################################################################
4
5 ifeq ($(shell [ ! -r Makefile.opts ] && echo 1),)
6     include Makefile.opts
7 endif
8
9 ###############################################################################
10 # Objects and files
11 ###############################################################################
12
13
14 # All possible plugin directories, needed for make clean
15 #
16 PLUGINS_DIR :=  alsa beos darwin directx dsp dummy dvd esd fb ggi glide gtk downmix idct imdct kde macosx mga motion mpeg qt sdl text x11 yuv
17
18 #
19 # All possible plugin objects
20 #
21 PLUGINS_TARGETS := alsa/alsa beos/beos darwin/darwin directx/directx dsp/dsp dummy/dummy dummy/null dvd/dvd esd/esd fb/fb ggi/ggi glide/glide gtk/gnome gtk/gtk downmix/downmix downmix/downmixsse downmix/downmix3dn idct/idct idct/idctclassic idct/idctmmx idct/idctmmxext imdct/imdct imdct/imdct3dn imdct/imdctsse kde/kde macosx/macosx mga/mga motion/motion motion/motionmmx motion/motionmmxext mpeg/es mpeg/ps mpeg/ts qt/qt sdl/sdl text/ncurses text/rc x11/x11 x11/xvideo yuv/yuv yuv/yuvmmx
22
23 #
24 # C Objects
25
26 INTERFACE := main interface intf_msg intf_playlist intf_channels
27 INPUT := input input_ext-dec input_ext-intf input_dec input_programs input_netlist input_clock mpeg_system
28 VIDEO_OUTPUT := video_output video_text video_spu video_yuv
29 AUDIO_OUTPUT := audio_output aout_ext-dec aout_u8 aout_s8 aout_u16 aout_s16 aout_spdif
30 AC3_DECODER := ac3_decoder_thread ac3_decoder ac3_parse ac3_exponent ac3_bit_allocate ac3_mantissa ac3_rematrix ac3_imdct
31 AC3_SPDIF := ac3_spdif ac3_iec958
32 LPCM_DECODER := lpcm_decoder_thread
33 AUDIO_DECODER := audio_decoder adec_generic adec_layer1 adec_layer2 adec_math
34 SPU_DECODER := spu_decoder
35 VIDEO_DECODER := video_parser vpar_headers vpar_blocks vpar_synchro vpar_pool video_decoder
36 MISC := mtime tests modules netutils
37
38 C_OBJ :=        $(INTERFACE:%=src/interface/%.o) \
39                 $(INPUT:%=src/input/%.o) \
40                 $(VIDEO_OUTPUT:%=src/video_output/%.o) \
41                 $(AUDIO_OUTPUT:%=src/audio_output/%.o) \
42                 $(AC3_DECODER:%=src/ac3_decoder/%.o) \
43                 $(AC3_SPDIF:%=src/ac3_spdif/%.o) \
44                 $(LPCM_DECODER:%=src/lpcm_decoder/%.o) \
45                 $(AUDIO_DECODER:%=src/audio_decoder/%.o) \
46                 $(SPU_DECODER:%=src/spu_decoder/%.o) \
47                 $(VIDEO_DECODER:%=src/video_decoder/%.o) \
48                 $(MISC:%=src/misc/%.o)
49
50 #
51 # Misc Objects
52
53 ifeq ($(NEED_GETOPT),1)
54 C_OBJ += extras/GNUgetopt/getopt.o extras/GNUgetopt/getopt1.o 
55 endif
56
57 ifeq ($(SYS),beos)
58 CPP_OBJ :=      src/misc/beos_specific.o
59 endif
60
61 ifneq (,$(findstring darwin,$(SYS)))
62 C_OBJ +=        src/misc/darwin_specific.o
63 endif
64
65 ifneq (,$(findstring mingw32,$(SYS)))
66 RESOURCE_OBJ := share/vlc_win32_rc.o
67 endif
68
69 #
70 # Generated header
71 #
72 H_OBJ :=        src/misc/modules_builtin.h
73
74 #
75 # Other lists of files
76 #
77 C_DEP := $(C_OBJ:%.o=.dep/%.d)
78 CPP_DEP := $(CPP_OBJ:%.o=.dep/%.dpp)
79
80 #
81 # Translate plugin names
82 #
83 ifneq (,$(PLUGINS))
84 PLUGIN_OBJ := $(shell for i in $(PLUGINS) ; do echo " "$(PLUGINS_TARGETS)" " | sed -e 's@.*/\('$$i'\) .*@plugins/\1.so@' -e 's@^ .*@@' ; done)
85 endif
86 ifneq (,$(BUILTINS))
87 BUILTIN_OBJ := $(shell for i in $(BUILTINS) ; do echo " "$(PLUGINS_TARGETS)" " | sed -e 's@.*/\('$$i'\) .*@plugins/\1.a@' -e 's@^ .*@@' ; done)
88 endif
89
90 #
91 # Misc variables
92 #
93 VLC_QUICKVERSION := $(shell grep '^ *VLC_VERSION=' configure.in | cut -f2 -d=)
94 LIBDVDCSS_QUICKVERSION := $(shell grep '^ *LIBDVDCSS_VERSION=' configure.in | cut -f2 -d=)
95
96
97 # All symbols must be exported
98 export
99
100 ###############################################################################
101 # Targets
102 ###############################################################################
103
104 #
105 # Virtual targets
106 #
107 all: Makefile.opts vlc ${ALIASES} vlc.app
108
109 Makefile.opts:
110         @echo "**** No configuration found, running ./configure..."
111         ./configure
112         $(MAKE) $(MAKECMDGOALS)
113         exit
114
115 show:
116         @echo CC: $(CC)
117         @echo CFLAGS: $(CFLAGS)
118         @echo DCFLAGS: $(DCFLAGS)
119         @echo LCFLAGS: $(LCFLAGS)
120         @echo PCFLAGS: $(PCFLAGS)
121         @echo PLCFLAGS: $(PLCFLAGS)
122         @echo C_OBJ: $(C_OBJ)
123         @echo CPP_OBJ: $(CPP_OBJ)
124         @echo PLUGIN_OBJ: $(PLUGIN_OBJ)
125         @echo BUILTIN_OBJ: $(BUILTIN_OBJ)
126
127 #
128 # Cleaning rules
129 #
130 clean: libdvdcss-clean plugins-clean vlc-clean
131         rm -f src/*/*.o extras/*/*.o
132         rm -f lib/*.so* lib/*.a
133         rm -f plugins/*.so plugins/*.a
134
135 libdvdcss-clean:
136         -cd extras/libdvdcss && $(MAKE) clean
137
138 plugins-clean:
139         for dir in $(PLUGINS_DIR) ; do \
140                 ( cd plugins/$${dir} && $(MAKE) clean ) ; done
141         rm -f plugins/*/*.o plugins/*/*.moc plugins/*/*.bak
142
143 vlc-clean:
144         rm -f $(C_OBJ) $(CPP_OBJ)
145         rm -f vlc gnome-vlc gvlc kvlc qvlc vlc.exe
146         rm -Rf vlc.app
147
148 distclean: clean
149         rm -f **/*.o **/*~ *.log
150         rm -f Makefile.opts
151         rm -f include/defs.h include/config.h include/modules_builtin.h
152         rm -f src/misc/modules_builtin.h
153         rm -f config*status config*cache config*log
154         rm -f gmon.out core build-stamp
155         rm -Rf .dep
156         rm -f .gdb_history
157
158 #
159 # Install/uninstall rules
160 #
161 install: libdvdcss-install vlc-install plugins-install
162
163 uninstall: libdvdcss-uninstall vlc-uninstall plugins-uninstall
164
165 vlc-install:
166         mkdir -p $(DESTDIR)$(bindir)
167         $(INSTALL) vlc $(DESTDIR)$(bindir)
168 ifneq (,$(ALIASES))
169         for alias in $(ALIASES) ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias && ln -s vlc $(DESTDIR)$(bindir)/$$alias ; fi ; done
170 endif
171         mkdir -p $(DESTDIR)$(datadir)/videolan
172         $(INSTALL) -m 644 share/*.psf $(DESTDIR)$(datadir)/videolan
173         $(INSTALL) -m 644 share/*.png $(DESTDIR)$(datadir)/videolan
174         $(INSTALL) -m 644 share/*.xpm $(DESTDIR)$(datadir)/videolan
175
176 vlc-uninstall:
177         rm vlc $(DESTDIR)$(bindir)/vlc
178 ifneq (,$(ALIASES))
179         for alias in $(ALIASES) ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias ; fi ; done
180 endif
181         rm -f $(DESTDIR)$(datadir)/videolan/*.psf
182         rm -f $(DESTDIR)$(datadir)/videolan/*.png
183         rm -f $(DESTDIR)$(datadir)/videolan/*.xpm
184
185 plugins-install:
186         mkdir -p $(DESTDIR)$(libdir)/videolan/vlc
187 ifneq (,$(PLUGINS))
188         $(INSTALL) -m 644 $(PLUGINS:%=plugins/%.so) $(DESTDIR)$(libdir)/videolan/vlc
189 endif
190
191 plugins-uninstall:
192         rm -f $(DESTDIR)$(libdir)/videolan/vlc/*.so
193
194 libdvdcss-install:
195         -cd extras/libdvdcss && $(MAKE) install
196
197 libdvdcss-uninstall:
198         -cd extras/libdvdcss && $(MAKE) uninstall
199
200 #
201 # Package generation rules
202 #
203 snapshot-common:
204         # Check that tmp isn't in the way
205         @if test -e tmp; then \
206                 echo "Error: please remove ./tmp, it is in the way"; false; \
207         else \
208                 echo "OK."; mkdir tmp; \
209         fi
210         # Copy directory structure in tmp
211         find -type d | grep -v '\(\.dep\|snapshot\|CVS\)' | while read i ; \
212                 do mkdir -p tmp/vlc/$$i ; \
213         done
214         find debian -mindepth 1 -maxdepth 1 -type d | \
215                 while read i ; do rm -Rf tmp/vlc/$$i ; done
216         # Copy .c .h .in .cpp and .glade files
217         find include src plugins -type f -name '*.[chig]*' | while read i ; \
218                 do cp $$i tmp/vlc/$$i ; done
219         # Copy plugin Makefiles
220         find plugins -type f -name Makefile | while read i ; \
221                 do cp $$i tmp/vlc/$$i ; done
222         # Copy extra programs and documentation
223         cp -a extras/* tmp/vlc/extras
224         cp -a doc/* tmp/vlc/doc
225         find tmp/vlc/extras tmp/vlc/doc \
226                 -type d -name CVS -o -name '.*' -o -name '*.[o]' | \
227                         while read i ; do rm -Rf $$i ; done
228         # Copy misc files
229         cp vlc.spec AUTHORS COPYING TODO todo.pl ChangeLog README* INSTALL* \
230                 Makefile Makefile.opts.in Makefile.dep Makefile.modules \
231                 configure configure.in install-sh config.sub config.guess \
232                         tmp/vlc/
233         # Copy Debian control files
234         for file in debian/*dirs debian/*docs debian/*menu debian/*desktop \
235                 debian/*copyright ; do cp $$file tmp/vlc/debian ; done
236         for file in control changelog rules ; do \
237                 cp debian/$$file tmp/vlc/debian/ ; done
238         # Copy fonts and icons
239         for file in share/*png share/*xpm share/*psf ; do \
240                 cp $$file tmp/vlc/share ; done
241         for file in vlc_beos.rsrc vlc.icns gvlc_win32.ico vlc_win32_rc.rc ; do \
242                         cp share/$$file tmp/vlc/share/ ; done
243
244 snapshot: snapshot-common
245         # Build archives
246         F=vlc-${VLC_QUICKVERSION}; \
247         mv tmp/vlc tmp/$$F; (cd tmp ; tar cf $$F.tar $$F); \
248         bzip2 -f -9 < tmp/$$F.tar > $$F.tar.bz2; \
249         gzip -f -9 tmp/$$F.tar ; mv tmp/$$F.tar.gz .
250         # Clean up
251         rm -Rf tmp
252
253 snapshot-nocss: snapshot-common
254         # Remove libdvdcss
255         rm -Rf tmp/vlc/extras/libdvdcss
256         rm -f tmp/vlc/*.libdvdcss
257         # Fix debian information
258         rm -f tmp/vlc/debian/libdvdcss*
259         rm -f tmp/vlc/debian/control
260         sed -e 's#^ DVDs# unencrypted DVDs#' < debian/control \
261                 | awk '{if(gsub("Package: libdvdcss",$$0))a=1;if(a==0)print $$0;if(a==1&&$$0=="")a=0}' \
262                 > tmp/vlc/debian/control
263         rm -f tmp/vlc/debian/rules
264         sed -e 's#^\(export LIBDVDCSS_FLAGS=\).*#\1"--without-dvdcss"#' < debian/rules \
265                 | awk '{if($$0=="# libdvdcss start")a=1;if(a==0)print $$0;if($$0=="# libdvdcss stop")a=0}' \
266                 > tmp/vlc/debian/rules
267         chmod +x tmp/vlc/debian/rules
268         # Build css-disabled archives
269         F=vlc-${VLC_QUICKVERSION}; G=vlc-${VLC_QUICKVERSION}-nocss; \
270         mv tmp/vlc tmp/$$F; (cd tmp ; tar cf $$G.tar $$F); \
271         bzip2 -f -9 < tmp/$$G.tar > $$G.tar.bz2; \
272         gzip -f -9 tmp/$$G.tar ; mv tmp/$$G.tar.gz .
273         # Clean up
274         rm -Rf tmp
275
276 libdvdcss-snapshot: snapshot-common
277         # Remove vlc sources and icons, doc, debian directory...
278         rm -Rf tmp/vlc/src tmp/vlc/share tmp/vlc/plugins tmp/vlc/doc
279         rm -Rf tmp/vlc/extras/GNUgetopt tmp/vlc/extras/MacOSX_app
280         rm -Rf tmp/vlc/debian
281         # Remove useless headers
282         rm -f tmp/vlc/include/*
283         for file in defs.h.in config.h.in common.h int_types.h ; \
284                 do cp include/$$file tmp/vlc/include/ ; done
285         # Remove misc files (??? - maybe not really needed)
286         rm -f tmp/vlc/vlc.spec tmp/vlc/INSTALL-win32.txt
287         mv tmp/vlc/INSTALL.libdvdcss tmp/vlc/INSTALL
288         mv tmp/vlc/README.libdvdcss tmp/vlc/README
289         # Fix Makefile
290         rm -f tmp/vlc/Makefile
291         sed -e 's#^install:#install-unused:#' \
292                 -e 's#^uninstall:#uninstall-unused:#' \
293                 -e 's#^clean:#clean-unused:#' \
294                 -e 's#^all:.*#all: libdvdcss#' \
295                 -e 's#^libdvdcss-install:#install:#' \
296                 -e 's#^libdvdcss-uninstall:#uninstall:#' \
297                 -e 's#^libdvdcss-clean:#clean:#' \
298                 < Makefile > tmp/vlc/Makefile
299         # Build archives
300         F=libdvdcss-${LIBDVDCSS_QUICKVERSION}; \
301         mv tmp/vlc tmp/$$F; (cd tmp ; tar cf $$F.tar $$F); \
302         bzip2 -f -9 < tmp/$$F.tar > $$F.tar.bz2; \
303         gzip -f -9 tmp/$$F.tar ; mv tmp/$$F.tar.gz .
304         # Clean up
305         rm -Rf tmp
306
307 deb:
308         dpkg-buildpackage -rfakeroot -us -uc
309
310 #
311 # Gtk/Gnome/* aliases and OS X application
312 #
313 gnome-vlc gvlc kvlc qvlc: vlc
314         rm -f $@ && ln -s vlc $@
315
316 .PHONY: vlc.app
317 vlc.app: Makefile.opts
318 ifneq (,$(findstring darwin,$(SYS)))
319         rm -Rf vlc.app
320         mkdir -p vlc.app/Contents/Resources
321         mkdir -p vlc.app/Contents/MacOS/lib
322         mkdir -p vlc.app/Contents/MacOS/share
323         $(INSTALL) -m 644 extras/MacOSX_app/Contents/Info.plist vlc.app/Contents/
324         $(INSTALL) -m 644 extras/MacOSX_app/Contents/PkgInfo vlc.app/Contents/
325         $(INSTALL) vlc vlc.app/Contents/MacOS/
326         $(INSTALL) share/vlc.icns vlc.app/Contents/Resources/
327 ifneq (,$(PLUGINS))
328         $(INSTALL) $(PLUGINS:%=plugins/%.so) vlc.app/Contents/MacOS/plugins
329 endif
330         $(INSTALL) -m 644 share/*.psf vlc.app/Contents/MacOS/share
331 endif
332
333 FORCE:
334
335 #
336 # Generic rules (see below)
337 #
338 $(C_DEP): %.d: FORCE
339         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
340
341 $(CPP_DEP): %.dpp: FORCE
342         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
343
344 $(H_OBJ): Makefile.opts Makefile.dep Makefile
345         rm -f $@ && cp $@.in $@
346 ifneq (,$(BUILTINS))
347         for i in $(BUILTINS) ; do \
348                 echo "int module_"$$i"_InitModule( module_t* );" >> $@ ; \
349                 echo "int module_"$$i"_ActivateModule( module_t* );" >> $@ ; \
350                 echo "int module_"$$i"_DeactivateModule( module_t* );" >> $@ ; \
351         done
352         echo "" >> $@ ;
353         printf "#define ALLOCATE_ALL_BUILTINS() do { " >> $@ ;
354         for i in $(BUILTINS) ; do \
355                 printf "ALLOCATE_BUILTIN("$$i"); " >> $@ ; \
356         done
357         echo "} while( 0 );" >> $@ ;
358         echo "" >> $@ ;
359 endif
360
361 $(C_OBJ): %.o: Makefile.opts Makefile.dep Makefile
362 $(C_OBJ): %.o: .dep/%.d
363 $(C_OBJ): %.o: %.c
364         $(CC) $(CFLAGS) -c -o $@ $<
365
366 $(CPP_OBJ): %.o: Makefile.opts Makefile.dep Makefile
367 $(CPP_OBJ): %.o: .dep/%.dpp
368 $(CPP_OBJ): %.o: %.cpp
369         $(CC) $(CFLAGS) -c -o $@ $<
370
371 $(RESOURCE_OBJ): %.o: Makefile.dep Makefile
372 ifneq (,(findstring mingw32,$(SYS)))
373 $(RESOURCE_OBJ): %.o: %.rc
374         $(WINDRES) -i $< -o $@
375 endif
376
377 #
378 # Main application target
379 #
380 vlc: Makefile.opts Makefile.dep Makefile $(H_OBJ) $(C_OBJ) $(CPP_OBJ) $(BUILTIN_OBJ) $(RESOURCE_OBJ) plugins
381         $(CC) $(CFLAGS) -o $@ $(C_OBJ) $(CPP_OBJ) $(BUILTIN_OBJ) $(RESOURCE_OBJ) $(LCFLAGS)
382 ifeq ($(SYS),beos)
383         xres -o $@ ./share/vlc_beos.rsrc
384         mimeset -f $@
385 endif
386
387 #
388 # Plugins target
389 #
390 plugins: Makefile.modules Makefile.opts Makefile.dep Makefile $(PLUGIN_OBJ)
391 $(PLUGIN_OBJ): FORCE
392         cd $(shell echo " "$(PLUGINS_TARGETS)" " | sed -e 's@.* \([^/]*/\)'$(@:plugins/%.so=%)' .*@plugins/\1@' -e 's@^ .*@@') && $(MAKE) $(@:plugins/%=../%)
393
394 #
395 # Built-in modules target
396 #
397 builtins: Makefile.modules Makefile.opts Makefile.dep Makefile $(BUILTIN_OBJ)
398 $(BUILTIN_OBJ): FORCE
399         cd $(shell echo " "$(PLUGINS_TARGETS)" " | sed -e 's@.* \([^/]*/\)'$(@:plugins/%.a=%)' .*@plugins/\1@' -e 's@^ .*@@') && $(MAKE) $(@:plugins/%=../%)
400
401 #
402 # libdvdcss target
403 #
404 libdvdcss: Makefile.opts
405         cd extras/libdvdcss && $(MAKE)
406