]> git.sesse.net Git - vlc/blob - Makefile
177dca84b61b3b0867276d9c5ebd8f2ebc1a8b71
[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 mpeg_system input_info
24 VIDEO_OUTPUT := video_output video_text vout_pictures vout_subpictures
25 AUDIO_OUTPUT := audio_output aout_ext-dec aout_pcm aout_spdif
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
186 plugins-install:
187         mkdir -p $(DESTDIR)$(libdir)/vlc
188 ifneq (,$(PLUGINS))
189         $(INSTALL) $(PLUGINS:%=modules/%.so) $(DESTDIR)$(libdir)/vlc
190 endif
191
192 plugins-uninstall:
193         rm -f $(DESTDIR)$(libdir)/vlc/*.so
194
195 builtins-install:
196         mkdir -p $(DESTDIR)$(libdir)/vlc
197 ifneq (,$(BUILTINS))
198         $(INSTALL) -m 644 $(BUILTINS:%=modules/%.a) $(DESTDIR)$(libdir)/vlc
199 endif
200
201 builtins-uninstall:
202         rm -f $(DESTDIR)$(libdir)/vlc/*.a
203
204 libvlc-install:
205         mkdir -p $(DESTDIR)$(bindir)
206         $(INSTALL) vlc-config $(DESTDIR)$(bindir)
207         mkdir -p $(DESTDIR)$(includedir)/vlc
208         $(INSTALL) -m 644 include/vlc/*.h $(DESTDIR)$(includedir)/vlc
209         mkdir -p $(DESTDIR)$(libdir)
210         $(INSTALL) -m 644 lib/libvlc.a $(DESTDIR)$(libdir)
211
212 libvlc-uninstall:
213         rm -f $(DESTDIR)$(bindir)/vlc-config
214         rm -Rf $(DESTDIR)$(includedir)/vlc
215         rm -f $(DESTDIR)$(libdir)/libvlc.a
216
217 mozilla-install:
218 ifeq ($(MOZILLA),1)
219         -cd mozilla && $(MAKE) install
220 endif
221
222 mozilla-uninstall:
223 ifeq ($(MOZILLA),1)
224         -cd mozilla && $(MAKE) uninstall
225 endif
226
227 po-install:
228         -cd po && $(MAKE) install
229
230 po-uninstall:
231         -cd po && $(MAKE) uninstall
232
233 #
234 # Package generation rules
235 #
236 dist:
237         # Check that tmp isn't in the way
238         @if test -e tmp; then \
239                 echo "Error: please remove ./tmp, it is in the way"; false; \
240         else \
241                 echo "OK."; mkdir tmp; \
242         fi
243         # Copy directory structure in tmp
244         find -type d | grep -v '\(\.dep\|snapshot\|CVS\)' | while read i ; \
245                 do mkdir -p tmp/vlc/$$i ; \
246         done
247         rm -Rf tmp/vlc/tmp
248         find debian -mindepth 1 -maxdepth 1 -type d | \
249                 while read i ; do rm -Rf tmp/vlc/$$i ; done
250         # Copy .c .h .in .cpp .m and .glade files
251         find include src modules -type f -name '*.[bcdhigmrst]*' | while read i ; \
252                 do cp $$i tmp/vlc/$$i ; done
253         # Grmbl... special case...
254         for i in API BUGS DESIGN TODO ; \
255                 do cp modules/mad/$$i tmp/vlc/modules/mad ; done
256         # Copy plugin Makefiles
257         find modules -type f -name Makefile | while read i ; \
258                 do cp $$i tmp/vlc/$$i ; done
259         # Copy extra programs and documentation
260         cp -a extras/* tmp/vlc/extras
261         cp -a doc/* tmp/vlc/doc
262         find tmp/vlc/extras tmp/vlc/doc \
263                 -type d -name CVS -o -name '.*' -o -name '*.[o]' | \
264                         while read i ; do rm -Rf $$i ; done
265         # Copy gettext stuff
266         cp po/ChangeLog po/vlc.pot po/*.po tmp/vlc/po
267         for i in Makefile.in.in POTFILES.in ; do cp po/$$i tmp/vlc/po ; done
268         # Copy misc files
269         cp FAQ AUTHORS COPYING TODO todo.pl ChangeLog* README* INSTALL* \
270                 ABOUT-NLS BUGS MODULES vlc.spec \
271                 Makefile Makefile.*.in Makefile.dep Makefile.modules \
272                 configure configure.in install-sh install-win32 macosx-dmg \
273                 config.sub config.guess aclocal.m4 mkinstalldirs \
274                         tmp/vlc/
275         # Copy Debian control files
276         for file in debian/*dirs debian/*docs debian/*menu debian/*desktop \
277                 debian/*copyright ; do cp $$file tmp/vlc/debian ; done
278         for file in control changelog rules ; do \
279                 cp debian/$$file tmp/vlc/debian/ ; done
280         # Copy ipkg control files
281         for file in control rules patch ; do \
282                 cp ipkg/$$file tmp/vlc/ipkg/ ; done
283         # Copy fonts and icons
284         for file in share/*vlc* share/*psf; do \
285                 cp $$file tmp/vlc/share ; done
286         # Build archives
287         F=vlc-${VERSION}; \
288         mv tmp/vlc tmp/$$F; (cd tmp ; \
289                 cd $$F && $(MAKE) distclean && cd .. ; \
290                 tar czf ../$$F.tar.gz $$F);
291         # Clean up
292         rm -Rf tmp
293
294 package-win32:
295         # XXX: this rule is probably only useful to you if you have exactly
296         # the same setup as me. Contact sam@zoy.org if you need to use it.
297         #
298         # Check that tmp isn't in the way
299         @if test -e tmp; then \
300                 echo "Error: please remove ./tmp, it is in the way"; false; \
301         else \
302                 echo "OK."; mkdir tmp; \
303         fi
304         # Create installation script
305         cp install-win32 tmp/nsi
306         # Copy relevant files
307         cp vlc.exe tmp/ 
308         $(STRIP) tmp/vlc.exe
309         cp INSTALL.win32 tmp/INSTALL.txt ; unix2dos tmp/INSTALL.txt
310         for file in AUTHORS COPYING ChangeLog README FAQ TODO ; \
311                         do cp $$file tmp/$${file}.txt ; \
312                         unix2dos tmp/$${file}.txt ; done
313         mkdir tmp/modules
314         cp $(PLUGINS:%=modules/%.so) tmp/modules/ 
315         # don't include these two
316         #rm -f tmp/modules/gtk.so tmp/modules/sdl.so
317 ifneq (,$(PLUGINS))
318         for i in $(PLUGINS) ; do if test $$i != intfwin ; then $(STRIP) tmp/modules/$$i.so ; fi ; done
319 endif
320         mkdir tmp/share
321         for file in default8x16.psf default8x9.psf ; \
322                 do cp share/$$file tmp/share/ ; done
323         # Create package 
324         wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} /CD tmp/nsi
325         # Clean up
326         rm -Rf tmp
327
328 package-beos:
329         # Check that tmp isn't in the way
330         @if test -e tmp; then \
331                 echo "Error: please remove ./tmp, it is in the way"; false; \
332         else \
333                 echo "OK."; mkdir tmp; \
334         fi
335         
336         # Create dir
337         mkdir -p tmp/vlc/share
338         # Copy relevant files
339         cp vlc tmp/vlc/
340         strip tmp/vlc/vlc
341         xres -o tmp/vlc/vlc ./share/vlc_beos.rsrc
342         cp AUTHORS COPYING ChangeLog README FAQ TODO tmp/vlc/
343         for file in default8x16.psf default8x9.psf ; \
344                 do cp share/$$file tmp/vlc/share/ ; done
345         mkdir tmp/vlc/modules
346         cp $(PLUGINS:%=modules/%.so) tmp/vlc/modules/ 
347         strip $(PLUGINS:%=tmp/vlc/modules/%.so)
348         # Create package 
349         mv tmp/vlc tmp/vlc-${VERSION}
350         (cd tmp ; find vlc-${VERSION} | \
351         zip -9 -@ vlc-${VERSION}-BeOS-x86.zip )
352         mv tmp/vlc-${VERSION}-BeOS-x86.zip .
353         # Clean up
354         rm -Rf tmp
355
356 package-macosx:
357         # Check that tmp isn't in the way
358         @if test -e tmp; then \
359                 echo "Error: please remove ./tmp, it is in the way"; false; \
360         else \
361                 echo "OK."; mkdir tmp; \
362         fi
363
364         # Copy relevant files 
365         cp -R vlc.app tmp/
366         cp AUTHORS COPYING ChangeLog README README.MacOSX.rtf FAQ TODO tmp/
367
368         # Create disk image 
369         ./macosx-dmg 0 "vlc-${VERSION}" tmp/* 
370
371         # Clean up
372         rm -Rf tmp
373
374 #
375 # Gtk/Gnome/* aliases and OS X application
376 #
377 gnome-vlc gvlc kvlc qvlc: vlc
378         rm -f $@ && ln -s vlc $@
379
380 .PHONY: vlc.app
381 vlc.app: vlc plugins
382 ifneq (,$(findstring darwin,$(SYS)))
383         rm -Rf vlc.app
384         cd extras/MacOSX ; pbxbuild | grep -v '^ ' | grep -v '^\t' | grep -v "^$$"
385         cp -r extras/MacOSX/build/vlc.bundle ./vlc.app
386         $(INSTALL) -d vlc.app/Contents/MacOS/share
387         $(INSTALL) -d vlc.app/Contents/MacOS/modules
388         $(INSTALL) vlc vlc.app/Contents/MacOS/
389 ifneq (,$(PLUGINS))
390         $(INSTALL) $(PLUGINS:%=modules/%.so) vlc.app/Contents/MacOS/modules
391 endif
392         $(INSTALL) -m 644 share/*.psf vlc.app/Contents/MacOS/share
393 endif
394
395 FORCE:
396
397 #
398 # Generic rules (see below)
399 #
400 src/misc/modules_builtin.h: Makefile.opts Makefile Makefile.config
401         @echo "make[$(MAKELEVEL)]: Creating \`$@'"
402         @rm -f $@ && cp $@.in $@
403 ifneq (,$(BUILTINS))
404         @for i in $(BUILTINS) ; do \
405                 echo "int vlc_entry__"`basename $$i`"( module_t* );" >>$@; \
406         done
407         @echo "" >> $@ ;
408 endif
409         @echo "#define ALLOCATE_ALL_BUILTINS() \\" >> $@ ;
410         @echo "    do \\" >> $@ ;
411         @echo "    { \\" >> $@ ;
412 ifneq (,$(BUILTINS))
413         @for i in $(BUILTINS) ; do \
414                 echo "        ALLOCATE_BUILTIN("`basename $$i`"); \\" >> $@ ; \
415         done
416 endif
417         @echo "    } while( 0 );" >> $@ ;
418         @echo "" >> $@ ;
419
420 $(C_DEP): %.d: FORCE
421         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
422
423 $(CPP_DEP): %.dpp: FORCE
424         @$(MAKE) -s --no-print-directory -f Makefile.dep $@
425
426 $(C_OBJ): %.o: Makefile.opts Makefile.dep Makefile
427 $(C_OBJ): %.o: $(H_OBJ)
428 $(C_OBJ): %.o: .dep/%.d
429 $(C_OBJ): %.o: %.c
430         $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
431
432 $(CPP_OBJ): %.o: Makefile.opts Makefile.dep Makefile
433 $(CPP_OBJ): %.o: $(H_OBJ)
434 $(CPP_OBJ): %.o: .dep/%.dpp
435 $(CPP_OBJ): %.o: %.cpp
436         $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
437
438 $(M_OBJ): %.o: Makefile.opts Makefile.dep Makefile
439 $(M_OBJ): %.o: $(H_OBJ)
440 $(M_OBJ): %.o: .dep/%.dm
441 $(M_OBJ): %.o: %.m
442         $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
443
444 $(RESOURCE_OBJ): %.o: Makefile.dep Makefile
445 ifneq (,(findstring mingw32,$(SYS)))
446 $(RESOURCE_OBJ): %.o: %.rc
447         $(WINDRES) -i $< -o $@
448 endif
449
450 #
451 # Main application target
452 #
453 vlc: Makefile.config Makefile.opts Makefile.dep Makefile $(VLC_OBJ) lib/libvlc.a $(BUILTIN_OBJ)
454         $(CC) $(CFLAGS) -o $@ $(VLC_OBJ) lib/libvlc.a $(LDFLAGS) $(vlc_LDFLAGS) $(BUILTIN_OBJ) $(builtins_LDFLAGS)
455 ifeq ($(SYS),beos)
456         xres -o $@ ./share/vlc_beos.rsrc
457         mimeset -f $@
458 endif
459
460 #
461 # Main library target
462 #
463 lib/libvlc.a: Makefile.opts Makefile.dep Makefile $(LIBVLC_OBJ)
464         rm -f $@
465         ar rc $@ $(LIBVLC_OBJ)
466         $(RANLIB) $@
467
468 #
469 # DO NOT DISTRIBUTE SHARED VERSIONS OF LIBVLC UNTIL THE ABI IS STABLE
470 # OR BURN IN HELL -- Sam
471 #
472 #lib/libvlc.so: Makefile.opts Makefile.dep Makefile $(LIBVLC_OBJ)
473 #       $(CC) -shared $(LIBVLC_OBJ) $(LDFLAGS) $(vlc_LDFLAGS) -o $@
474
475 builtins: Makefile.modules Makefile.opts Makefile.dep Makefile $(BUILTIN_OBJ)
476 plugins: Makefile.modules Makefile.opts Makefile.dep Makefile $(PLUGIN_OBJ)
477
478 modules/%.a modules/%.so: $(H_OBJ) FORCE
479         @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@')
480
481 #
482 # Mozilla plugin target
483 #
484 mozilla/libvlcplugin.so: FORCE
485 ifeq ($(MOZILLA),1)
486         @cd mozilla && $(MAKE) builtins_LDFLAGS="$(builtins_LDFLAGS)"
487 endif
488
489 #
490 # gettext target
491 #
492 po: FORCE
493         @cd po && $(MAKE)
494