]> git.sesse.net Git - vlc/blob - Makefile
373fc1dad0d814fa369ebf4e752e54b2e829b988
[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 ifeq ($(shell [ ! -r Makefile.config ] && echo 1),)
9     include Makefile.config
10 endif
11
12 ###############################################################################
13 # Objects and files
14 ###############################################################################
15
16 #
17 # C Objects
18
19 VLC := vlc
20 LIBVLC := libvlc
21 INTERFACE := interface intf_eject
22 PLAYLIST := playlist
23 INPUT := input input_ext-plugins input_ext-dec input_ext-intf input_dec input_programs input_clock input_info
24 VIDEO_OUTPUT := video_output video_text vout_pictures vout_subpictures
25 AUDIO_OUTPUT := audio_output filters input mixer output
26 MISC := mtime modules threads cpu configuration netutils iso_lang messages objects extras
27
28 LIBVLC_OBJ :=   $(LIBVLC:%=src/%.o) \
29                 $(INTERFACE:%=src/interface/%.o) \
30                 $(PLAYLIST:%=src/playlist/%.o) \
31                 $(INPUT:%=src/input/%.o) \
32                 $(VIDEO_OUTPUT:%=src/video_output/%.o) \
33                 $(AUDIO_OUTPUT:%=src/audio_output/%.o) \
34                 $(MISC:%=src/misc/%.o)
35
36 VLC_OBJ := $(VLC:%=src/%.o)
37
38 C_OBJ := $(VLC_OBJ) $(LIBVLC_OBJ)
39
40 #
41 # Misc Objects
42
43 ifeq ($(NEED_GETOPT),1)
44 LIBVLC_OBJ += extras/GNUgetopt/getopt.o extras/GNUgetopt/getopt1.o 
45 endif
46
47 ifeq ($(NEED_SYMBOLS),1)
48 LIBVLC_OBJ += src/misc/symbols.o
49 endif
50
51 ifeq ($(SYS),beos)
52 CPP_OBJ :=      src/misc/beos_specific.o
53 endif
54
55 ifneq (,$(findstring darwin,$(SYS)))
56 LIBVLC_OBJ +=   src/misc/darwin_specific.o
57 endif
58
59 ifneq (,$(findstring mingw32,$(SYS)))
60 LIBVLC_OBJ +=   src/misc/win32_specific.o
61 RESOURCE_OBJ := share/vlc_win32_rc.o
62 endif
63
64 LIBVLC_OBJ += $(CPP_OBJ) $(M_OBJ) $(BUILTIN_OBJ)
65 VLC_OBJ += $(RESOURCE_OBJ)
66
67 #
68 # Generated header
69 #
70 H_OBJ :=        src/misc/modules_builtin.h
71
72 #
73 # Other lists of files
74 #
75 C_DEP := $(C_OBJ:%.o=.dep/%.d)
76 CPP_DEP := $(CPP_OBJ:%.o=.dep/%.dpp)
77
78 #
79 # Translate plugin names
80 #
81 ifneq (,$(PLUGINS))
82 PLUGIN_OBJ := $(PLUGINS:%=modules/%.so)
83 endif
84 ifneq (,$(BUILTINS))
85 BUILTIN_OBJ := $(BUILTINS:%=modules/%.a)
86 endif
87
88 #
89 # Misc variables
90 #
91 VERSION := $(shell grep '^ *VERSION=' configure.in | head -1 | sed 's/"//g' | cut -f2 -d=)
92
93 # All symbols must be exported
94 export
95
96 ###############################################################################
97 # Targets
98 ###############################################################################
99
100 #
101 # Virtual targets
102 #
103 all: Makefile.opts vlc ${ALIASES} vlc.app plugins po mozilla/libvlcplugin.so
104
105 Makefile.opts:
106         @echo "**** No configuration found, please run ./configure"
107         @exit 1
108 #       ./configure
109 #       $(MAKE) $(MAKECMDGOALS)
110 #       exit    
111
112 show:
113         @echo CC: $(CC)
114         @echo CFLAGS: $(CFLAGS)
115         @echo LDFLAGS: $(LDFLAGS)
116         @echo plugins_CFLAGS: $(plugins_CFLAGS)
117         @echo plugins_LDFLAGS: $(plugins_LDFLAGS)
118         @echo builtins_CFLAGS: $(builtins_CFLAGS)
119         @echo builtins_LDFLAGS: $(builtins_LDFLAGS)
120         @echo C_OBJ: $(C_OBJ)
121         @echo CPP_OBJ: $(CPP_OBJ)
122         @echo PLUGIN_OBJ: $(PLUGIN_OBJ)
123         @echo BUILTIN_OBJ: $(BUILTIN_OBJ)
124
125 #
126 # Cleaning rules
127 #
128 clean: plugins-clean po-clean vlc-clean mozilla-clean
129         rm -f src/*/*.o extras/*/*.o
130         rm -f lib/*.so* lib/*.a
131         rm -f plugins/*.so plugins/*.a plugins/*.lib plugins/*.tds
132         rm -Rf extras/MacOSX/build
133
134 po-clean:
135         -cd po && $(MAKE) clean
136
137 plugins-clean:
138         for dir in $(shell echo $(PLUGIN_OBJ) $(BUILTIN_OBJ) | sed 's@\([^ ]*\)/[^ ]*@\1@g' ) ; do ( PARENT=`pwd` ; cd $${dir} && $(MAKE) -f $$PARENT/Makefile.modules clean PARENT=$$PARENT ) ; done
139
140 vlc-clean:
141         rm -f $(C_OBJ) $(CPP_OBJ)
142         rm -f vlc gnome-vlc gvlc kvlc qvlc vlc.exe
143         rm -Rf vlc.app
144
145 mozilla-clean:
146         -cd mozilla && $(MAKE) clean
147
148 distclean: clean
149         -cd po && $(MAKE) maintainer-clean
150         rm -f **/*.o **/*~ *.log
151         rm -f Makefile.opts Makefile.config
152         rm -f include/defs.h include/modules_builtin.h
153         rm -f src/misc/modules_builtin.h
154         rm -f config*status config*cache config*log conftest*
155         rm -f gmon.out core build-stamp
156         rm -Rf .dep
157         rm -f .gdb_history
158
159 #
160 # Install/uninstall rules
161 #
162 install: vlc-install plugins-install builtins-install libvlc-install po-install mozilla-install
163
164 uninstall: vlc-uninstall plugins-uninstall builtins-uninstall libvlc-uninstall po-uninstall mozilla-uninstall
165
166 vlc-install:
167         mkdir -p $(DESTDIR)$(bindir)
168         $(INSTALL) vlc $(DESTDIR)$(bindir)
169 ifneq (,$(ALIASES))
170         for alias in $(ALIASES) ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias && ln -s vlc $(DESTDIR)$(bindir)/$$alias ; fi ; done
171 endif
172         mkdir -p $(DESTDIR)$(datadir)/vlc
173         $(INSTALL) -m 644 share/*.psf $(DESTDIR)$(datadir)/vlc
174         $(INSTALL) -m 644 share/*.png $(DESTDIR)$(datadir)/vlc
175         $(INSTALL) -m 644 share/*.xpm $(DESTDIR)$(datadir)/vlc
176
177 vlc-uninstall:
178         rm -f $(DESTDIR)$(bindir)/vlc
179 ifneq (,$(ALIASES))
180         for alias in $(ALIASES) ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias ; fi ; done
181 endif
182         rm -f $(DESTDIR)$(datadir)/vlc/*.psf
183         rm -f $(DESTDIR)$(datadir)/vlc/*.png
184         rm -f $(DESTDIR)$(datadir)/vlc/*.xpm
185         -rmdir $(DESTDIR)$(datadir)/vlc
186
187 plugins-install:
188         mkdir -p $(DESTDIR)$(libdir)/vlc
189 ifneq (,$(PLUGINS))
190         $(INSTALL) $(PLUGINS:%=modules/%.so) $(DESTDIR)$(libdir)/vlc
191 endif
192
193 plugins-uninstall:
194         rm -f $(DESTDIR)$(libdir)/vlc/*.so
195         -rmdir $(DESTDIR)$(libdir)/vlc
196
197 builtins-install:
198         mkdir -p $(DESTDIR)$(libdir)/vlc
199 ifneq (,$(BUILTINS))
200         $(INSTALL) -m 644 $(BUILTINS:%=modules/%.a) $(DESTDIR)$(libdir)/vlc
201 endif
202
203 builtins-uninstall:
204         rm -f $(DESTDIR)$(libdir)/vlc/*.a
205         -rmdir $(DESTDIR)$(libdir)/vlc
206
207 libvlc-install:
208         mkdir -p $(DESTDIR)$(bindir)
209         $(INSTALL) vlc-config $(DESTDIR)$(bindir)
210         mkdir -p $(DESTDIR)$(includedir)/vlc
211         $(INSTALL) -m 644 include/vlc/*.h $(DESTDIR)$(includedir)/vlc
212         mkdir -p $(DESTDIR)$(libdir)
213         $(INSTALL) -m 644 lib/libvlc.a $(DESTDIR)$(libdir)
214
215 libvlc-uninstall:
216         rm -f $(DESTDIR)$(bindir)/vlc-config
217         rm -Rf $(DESTDIR)$(includedir)/vlc
218         rm -f $(DESTDIR)$(libdir)/libvlc.a
219
220 mozilla-install:
221 ifeq ($(MOZILLA),1)
222         -cd mozilla && $(MAKE) install
223 endif
224
225 mozilla-uninstall:
226 ifeq ($(MOZILLA),1)
227         -cd mozilla && $(MAKE) uninstall
228 endif
229
230 po-install:
231         -cd po && $(MAKE) install
232
233 po-uninstall:
234         -cd po && $(MAKE) uninstall
235
236 #
237 # Package generation rules
238 #
239 dist:
240         # Check that tmp isn't in the way
241         @if test -e tmp; then \
242                 echo "Error: please remove ./tmp, it is in the way"; false; \
243         else \
244                 echo "OK."; mkdir tmp; \
245         fi
246         # Copy directory structure in tmp
247         find -type d | grep -v '\(\.dep\|snapshot\|CVS\)' | while read i ; \
248                 do mkdir -p tmp/vlc/$$i ; \
249         done
250         rm -Rf tmp/vlc/tmp
251         find debian -mindepth 1 -maxdepth 1 -type d | \
252                 while read i ; do rm -Rf tmp/vlc/$$i ; done
253         # Copy .c .h .in .cpp .m and .glade files
254         find include src modules -type f -name '*.[bcdhigmrst]*' | while read i ; \
255                 do cp $$i tmp/vlc/$$i ; done
256         # Grmbl... special case...
257         for i in API BUGS DESIGN TODO ; \
258                 do cp modules/mad/$$i tmp/vlc/modules/mad ; done
259         # Copy plugin Makefiles
260         find modules -type f -name Makefile | while read i ; \
261                 do cp $$i tmp/vlc/$$i ; done
262         # Copy extra programs and documentation
263         cp -a extras/* tmp/vlc/extras
264         cp -a doc/* tmp/vlc/doc
265         find tmp/vlc/extras tmp/vlc/doc \
266                 -type d -name CVS -o -name '.*' -o -name '*.[o]' | \
267                         while read i ; do rm -Rf $$i ; done
268         # Copy gettext stuff
269         cp po/ChangeLog po/vlc.pot po/*.po tmp/vlc/po
270         for i in Makefile.in.in POTFILES.in ; do cp po/$$i tmp/vlc/po ; done
271         # Copy misc files
272         cp FAQ AUTHORS COPYING TODO todo.pl ChangeLog* README* INSTALL* \
273                 ABOUT-NLS BUGS MODULES vlc.spec \
274                 Makefile Makefile.*.in Makefile.dep Makefile.modules \
275                 configure configure.in install-sh install-win32 macosx-dmg \
276                 config.sub config.guess aclocal.m4 mkinstalldirs \
277                         tmp/vlc/
278         # Copy Debian control files
279         for file in debian/*dirs debian/*docs debian/*menu debian/*desktop \
280                 debian/*copyright ; do cp $$file tmp/vlc/debian ; done
281         for file in control changelog rules ; do \
282                 cp debian/$$file tmp/vlc/debian/ ; done
283         # Copy ipkg control files
284         for file in control rules patch ; do \
285                 cp ipkg/$$file tmp/vlc/ipkg/ ; done
286         # Copy fonts and icons
287         for file in share/*vlc* share/*psf; do \
288                 cp $$file tmp/vlc/share ; done
289         # Build archives
290         F=vlc-${VERSION}; \
291         mv tmp/vlc tmp/$$F; (cd tmp ; \
292                 cd $$F && $(MAKE) distclean && cd .. ; \
293                 tar czf ../$$F.tar.gz $$F);
294         # Clean up
295         rm -Rf tmp
296
297 package-win32:
298         # XXX: this rule is probably only useful to you if you have exactly
299         # the same setup as me. Contact sam@zoy.org if you need to use it.
300         #
301         # Check that tmp isn't in the way
302         @if test -e tmp; then \
303                 echo "Error: please remove ./tmp, it is in the way"; false; \
304         else \
305                 echo "OK."; mkdir tmp; \
306         fi
307         # Create installation script
308         cp install-win32 tmp/nsi
309         # Copy relevant files
310         cp vlc.exe tmp/ 
311         $(STRIP) tmp/vlc.exe
312         cp INSTALL.win32 tmp/INSTALL.txt ; unix2dos tmp/INSTALL.txt
313         for file in AUTHORS COPYING ChangeLog README FAQ TODO ; \
314                         do cp $$file tmp/$${file}.txt ; \
315                         unix2dos tmp/$${file}.txt ; done
316         mkdir tmp/modules
317         cp $(PLUGINS:%=modules/%.so) tmp/modules/ 
318         # don't include these two
319         #rm -f tmp/modules/gtk.so tmp/modules/sdl.so
320 ifneq (,$(PLUGINS))
321         for i in $(PLUGINS) ; do if test $$i != intfwin ; then $(STRIP) tmp/modules/$$i.so ; fi ; done
322 endif
323         mkdir tmp/share
324         for file in default8x16.psf default8x9.psf ; \
325                 do cp share/$$file tmp/share/ ; done
326         # Create package 
327         wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} /CD tmp/nsi
328         # Clean up
329         rm -Rf tmp
330
331 package-beos:
332         # Check that tmp isn't in the way
333         @if test -e tmp; then \
334                 echo "Error: please remove ./tmp, it is in the way"; false; \
335         else \
336                 echo "OK."; mkdir tmp; \
337         fi
338         
339         # Create dir
340         mkdir -p tmp/vlc/share
341         # Copy relevant files
342         cp vlc tmp/vlc/
343         strip tmp/vlc/vlc
344         xres -o tmp/vlc/vlc ./share/vlc_beos.rsrc
345         cp AUTHORS COPYING ChangeLog README FAQ TODO tmp/vlc/
346         for file in default8x16.psf default8x9.psf ; \
347                 do cp share/$$file tmp/vlc/share/ ; done
348         mkdir tmp/vlc/modules
349         cp $(PLUGINS:%=modules/%.so) tmp/vlc/modules/ 
350         strip $(PLUGINS:%=tmp/vlc/modules/%.so)
351         # Create package 
352         mv tmp/vlc tmp/vlc-${VERSION}
353         (cd tmp ; find vlc-${VERSION} | \
354         zip -9 -@ vlc-${VERSION}-BeOS-x86.zip )
355         mv tmp/vlc-${VERSION}-BeOS-x86.zip .
356         # Clean up
357         rm -Rf tmp
358
359 package-macosx:
360         # Check that tmp isn't in the way
361         @if test -e tmp; then \
362                 echo "Error: please remove ./tmp, it is in the way"; false; \
363         else \
364                 echo "OK."; mkdir tmp; \
365         fi
366
367         # Copy relevant files 
368         cp -R vlc.app tmp/
369         cp AUTHORS COPYING ChangeLog README README.MacOSX.rtf FAQ TODO tmp/
370
371         # Create disk image 
372         ./macosx-dmg 0 "vlc-${VERSION}" tmp/* 
373
374         # Clean up
375         rm -Rf tmp
376
377 #
378 # Gtk/Gnome/* aliases and OS X application
379 #
380 gnome-vlc gvlc kvlc qvlc: vlc
381         rm -f $@ && ln -s vlc $@
382
383 .PHONY: vlc.app
384 vlc.app: vlc plugins
385 ifneq (,$(findstring darwin,$(SYS)))
386         rm -Rf vlc.app
387         cd extras/MacOSX ; pbxbuild | grep -v '^ ' | grep -v '^\t' | grep -v "^$$"
388         cp -r extras/MacOSX/build/vlc.bundle ./vlc.app
389         $(INSTALL) -d vlc.app/Contents/MacOS/share
390         $(INSTALL) -d vlc.app/Contents/MacOS/modules
391         $(INSTALL) vlc vlc.app/Contents/MacOS/
392 ifneq (,$(PLUGINS))
393         $(INSTALL) $(PLUGINS:%=modules/%.so) vlc.app/Contents/MacOS/modules
394 endif
395         $(INSTALL) -m 644 share/*.psf vlc.app/Contents/MacOS/share
396 endif
397
398 FORCE:
399
400 #
401 # Generic rules (see below)
402 #
403 src/misc/modules_builtin.h: Makefile.opts Makefile Makefile.config
404         @echo "make[$(MAKELEVEL)]: Creating \`$@'"
405         @rm -f $@ && cp $@.in $@
406 ifneq (,$(BUILTINS))
407         @for i in $(BUILTINS) ; do \
408                 echo "int vlc_entry__"`basename $$i`"( module_t* );" >>$@; \
409         done
410         @echo "" >> $@ ;
411 endif
412         @echo "#define ALLOCATE_ALL_BUILTINS() \\" >> $@ ;
413         @echo "    do \\" >> $@ ;
414         @echo "    { \\" >> $@ ;
415 ifneq (,$(BUILTINS))
416         @for i in $(BUILTINS) ; do \
417                 echo "        ALLOCATE_BUILTIN("`basename $$i`"); \\" >> $@ ; \
418         done
419 endif
420         @echo "    } while( 0 );" >> $@ ;
421         @echo "" >> $@ ;
422
423 $(C_DEP): %.d: FORCE
424         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
425
426 $(CPP_DEP): %.dpp: FORCE
427         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
428
429 $(C_OBJ): %.o: Makefile.opts Makefile.dep Makefile
430 $(C_OBJ): %.o: $(H_OBJ)
431 $(C_OBJ): %.o: .dep/%.d
432 $(C_OBJ): %.o: %.c
433         $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
434
435 $(CPP_OBJ): %.o: Makefile.opts Makefile.dep Makefile
436 $(CPP_OBJ): %.o: $(H_OBJ)
437 $(CPP_OBJ): %.o: .dep/%.dpp
438 $(CPP_OBJ): %.o: %.cpp
439         $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
440
441 $(M_OBJ): %.o: Makefile.opts Makefile.dep Makefile
442 $(M_OBJ): %.o: $(H_OBJ)
443 $(M_OBJ): %.o: .dep/%.dm
444 $(M_OBJ): %.o: %.m
445         $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
446
447 $(RESOURCE_OBJ): %.o: Makefile.dep Makefile
448 ifneq (,(findstring mingw32,$(SYS)))
449 $(RESOURCE_OBJ): %.o: %.rc
450         $(WINDRES) -i $< -o $@
451 endif
452
453 #
454 # Main application target
455 #
456 vlc: Makefile.config Makefile.opts Makefile.dep Makefile $(VLC_OBJ) lib/libvlc.a $(BUILTIN_OBJ)
457         $(CC) $(CFLAGS) -o $@ $(VLC_OBJ) lib/libvlc.a $(LDFLAGS) $(vlc_LDFLAGS) $(BUILTIN_OBJ) $(builtins_LDFLAGS)
458 ifeq ($(SYS),beos)
459         xres -o $@ ./share/vlc_beos.rsrc
460         mimeset -f $@
461 endif
462
463 #
464 # Main library target
465 #
466 lib/libvlc.a: Makefile.opts Makefile.dep Makefile $(LIBVLC_OBJ)
467         rm -f $@
468         ar rc $@ $(LIBVLC_OBJ)
469         $(RANLIB) $@
470
471 #
472 # DO NOT DISTRIBUTE SHARED VERSIONS OF LIBVLC UNTIL THE ABI IS STABLE
473 # OR BURN IN HELL -- Sam
474 #
475 #lib/libvlc.so: Makefile.opts Makefile.dep Makefile $(LIBVLC_OBJ)
476 #       $(CC) -shared $(LIBVLC_OBJ) $(LDFLAGS) $(vlc_LDFLAGS) -o $@
477
478 builtins: Makefile.modules Makefile.opts Makefile.dep Makefile $(BUILTIN_OBJ)
479 plugins: Makefile.modules Makefile.opts Makefile.dep Makefile $(PLUGIN_OBJ)
480
481 modules/%.a modules/%.so: $(H_OBJ) FORCE
482         @cd $(shell echo $@ | sed -e 's@\(.*\)/.*@\1@') && $(MAKE) -f $(shell echo $@ | sed -e 's@[^/]*/@../@g' -e 's@\(.*\)/.*@\1@')/Makefile.modules $(shell echo $@ | sed -e 's@.*/@@') PARENT=$(shell echo $@ | sed -e 's@[^/]*/@../@g' -e 's@\(.*\)/.*@\1@')
483
484 #
485 # Mozilla plugin target
486 #
487 mozilla/libvlcplugin.so: FORCE
488 ifeq ($(MOZILLA),1)
489         @cd mozilla && $(MAKE) builtins_LDFLAGS="$(builtins_LDFLAGS)"
490 endif
491
492 #
493 # gettext target
494 #
495 po: FORCE
496         @cd po && $(MAKE)
497