1 ###############################################################################
2 # vlc (VideoLAN Client) main Makefile - (c)1998 VideoLAN
3 ###############################################################################
5 ifeq ($(shell [ ! -r Makefile.opts ] && echo 1),)
8 ifeq ($(shell [ ! -r Makefile.config ] && echo 1),)
9 include Makefile.config
12 ###############################################################################
14 ###############################################################################
21 INTERFACE := interface intf_eject
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 STREAM_OUTPUT := stream_output
27 MISC := mtime modules threads cpu configuration netutils iso_lang messages objects extras
29 LIBVLC_OBJ := $(LIBVLC:%=src/%.o) \
30 $(INTERFACE:%=src/interface/%.o) \
31 $(PLAYLIST:%=src/playlist/%.o) \
32 $(INPUT:%=src/input/%.o) \
33 $(VIDEO_OUTPUT:%=src/video_output/%.o) \
34 $(AUDIO_OUTPUT:%=src/audio_output/%.o) \
35 $(STREAM_OUTPUT:%=src/stream_output/%.o) \
36 $(MISC:%=src/misc/%.o)
38 VLC_OBJ := $(VLC:%=src/%.o)
40 C_OBJ := $(VLC_OBJ) $(LIBVLC_OBJ)
45 ifeq ($(NEED_GETOPT),1)
46 LIBVLC_OBJ += extras/GNUgetopt/getopt.o extras/GNUgetopt/getopt1.o
49 ifeq ($(NEED_SYMBOLS),1)
50 LIBVLC_OBJ += src/misc/symbols.o
54 CPP_OBJ := src/misc/beos_specific.o
57 ifneq (,$(findstring darwin,$(SYS)))
58 LIBVLC_OBJ += src/misc/darwin_specific.o
61 ifneq (,$(findstring mingw32,$(SYS)))
62 LIBVLC_OBJ += src/misc/win32_specific.o
63 RESOURCE_OBJ := share/vlc_win32_rc.o
66 LIBVLC_OBJ += $(CPP_OBJ) $(M_OBJ) $(BUILTIN_OBJ)
67 VLC_OBJ += $(RESOURCE_OBJ)
72 H_OBJ := src/misc/modules_builtin.h
75 # Other lists of files
77 C_DEP := $(C_OBJ:%.o=.dep/%.d)
78 CPP_DEP := $(CPP_OBJ:%.o=.dep/%.dpp)
81 # Translate plugin names
84 PLUGIN_OBJ := $(PLUGINS:%=modules/%.so)
87 BUILTIN_OBJ := $(BUILTINS:%=modules/%.a)
93 VERSION := $(shell grep '^ *VERSION=' configure.in | head -1 | sed 's/"//g' | cut -f2 -d=)
95 # All symbols must be exported
98 ###############################################################################
100 ###############################################################################
105 all: Makefile.opts vlc ${ALIASES} vlc.app plugins po mozilla/libvlcplugin.so
108 @echo "**** No configuration found, please run ./configure"
111 # $(MAKE) $(MAKECMDGOALS)
116 @echo CFLAGS: $(CFLAGS)
117 @echo LDFLAGS: $(LDFLAGS)
118 @echo plugins_CFLAGS: $(plugins_CFLAGS)
119 @echo plugins_LDFLAGS: $(plugins_LDFLAGS)
120 @echo builtins_CFLAGS: $(builtins_CFLAGS)
121 @echo builtins_LDFLAGS: $(builtins_LDFLAGS)
122 @echo C_OBJ: $(C_OBJ)
123 @echo CPP_OBJ: $(CPP_OBJ)
124 @echo PLUGIN_OBJ: $(PLUGIN_OBJ)
125 @echo BUILTIN_OBJ: $(BUILTIN_OBJ)
130 clean: plugins-clean po-clean vlc-clean mozilla-clean
131 rm -f src/*/*.o extras/*/*.o
132 rm -f lib/*.so* lib/*.a
133 rm -f plugins/*.so plugins/*.a plugins/*.lib plugins/*.tds
134 rm -Rf extras/MacOSX/build
137 -cd po && $(MAKE) clean
140 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
143 rm -f $(C_OBJ) $(CPP_OBJ)
144 rm -f vlc gnome-vlc gvlc kvlc qvlc vlc.exe
148 -cd mozilla && $(MAKE) clean
151 -cd po && $(MAKE) maintainer-clean
152 rm -f **/*.o **/*~ *.log
153 rm -f Makefile.opts Makefile.config vlc-config
154 rm -f include/defs.h include/modules_builtin.h
155 rm -f src/misc/modules_builtin.h
156 rm -f config*status config*cache config*log conftest*
157 rm -f gmon.out core build-stamp
162 # Install/uninstall rules
164 install: vlc-install plugins-install builtins-install libvlc-install po-install mozilla-install
166 uninstall: vlc-uninstall plugins-uninstall builtins-uninstall libvlc-uninstall po-uninstall mozilla-uninstall
169 mkdir -p $(DESTDIR)$(bindir)
170 $(INSTALL) vlc $(DESTDIR)$(bindir)
172 for alias in $(ALIASES) ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias && ln -s vlc $(DESTDIR)$(bindir)/$$alias ; fi ; done
174 mkdir -p $(DESTDIR)$(datadir)/vlc
175 $(INSTALL) -m 644 share/*.psf $(DESTDIR)$(datadir)/vlc
176 $(INSTALL) -m 644 share/*.png $(DESTDIR)$(datadir)/vlc
177 $(INSTALL) -m 644 share/*.xpm $(DESTDIR)$(datadir)/vlc
180 rm -f $(DESTDIR)$(bindir)/vlc
182 for alias in $(ALIASES) ; do if test $$alias ; then rm -f $(DESTDIR)$(bindir)/$$alias ; fi ; done
184 rm -f $(DESTDIR)$(datadir)/vlc/*.psf
185 rm -f $(DESTDIR)$(datadir)/vlc/*.png
186 rm -f $(DESTDIR)$(datadir)/vlc/*.xpm
187 -rmdir $(DESTDIR)$(datadir)/vlc
190 mkdir -p $(DESTDIR)$(libdir)/vlc
192 for plugin in $(PLUGINS) ; \
193 do dir=`echo $$plugin | sed -e 's@/[^ ]*@@g'` ; \
194 mkdir -p $(DESTDIR)$(libdir)/vlc/$$dir ; \
195 cp modules/$${plugin}.so $(DESTDIR)$(libdir)/vlc/$$dir ; \
200 rm -f $(DESTDIR)$(libdir)/vlc/*/*.so
201 -rmdir $(DESTDIR)$(libdir)/vlc/*
202 -rmdir $(DESTDIR)$(libdir)/vlc
205 mkdir -p $(DESTDIR)$(libdir)/vlc
207 $(INSTALL) -m 644 $(BUILTINS:%=modules/%.a) $(DESTDIR)$(libdir)/vlc
211 rm -f $(DESTDIR)$(libdir)/vlc/*.a
212 -rmdir $(DESTDIR)$(libdir)/vlc
215 mkdir -p $(DESTDIR)$(bindir)
216 $(INSTALL) vlc-config $(DESTDIR)$(bindir)
217 mkdir -p $(DESTDIR)$(includedir)/vlc
218 $(INSTALL) -m 644 include/vlc/*.h $(DESTDIR)$(includedir)/vlc
219 mkdir -p $(DESTDIR)$(libdir)
220 $(INSTALL) -m 644 lib/libvlc.a $(DESTDIR)$(libdir)
223 rm -f $(DESTDIR)$(bindir)/vlc-config
224 rm -Rf $(DESTDIR)$(includedir)/vlc
225 rm -f $(DESTDIR)$(libdir)/libvlc.a
229 -cd mozilla && $(MAKE) install
234 -cd mozilla && $(MAKE) uninstall
238 -cd po && $(MAKE) install
241 -cd po && $(MAKE) uninstall
244 # Package generation rules
247 # Check that tmp isn't in the way
248 @if test -e tmp; then \
249 echo "Error: please remove ./tmp, it is in the way"; false; \
251 echo "OK."; mkdir tmp; \
253 # Copy directory structure in tmp
254 find -type d | grep -v '\(\.dep\|snapshot\|CVS\)' | while read i ; \
255 do mkdir -p tmp/vlc/$$i ; \
258 find debian -mindepth 1 -maxdepth 1 -type d | \
259 while read i ; do rm -Rf tmp/vlc/$$i ; done
260 # Copy .c .h .in .cpp .m and .glade files
261 find include src modules -type f -name '*.[bcdhigmrst]*' | while read i ; \
262 do cp $$i tmp/vlc/$$i ; done
263 # Grmbl... special case...
264 for i in API BUGS DESIGN TODO ; \
265 do cp modules/mad/$$i tmp/vlc/modules/mad ; done
266 # Copy plugin Makefiles
267 find modules -type f -name Makefile | while read i ; \
268 do cp $$i tmp/vlc/$$i ; done
269 # Copy extra programs and documentation
270 cp -a extras/* tmp/vlc/extras
271 cp -a doc/* tmp/vlc/doc
272 find tmp/vlc/extras tmp/vlc/doc \
273 -type d -name CVS -o -name '.*' -o -name '*.[o]' | \
274 while read i ; do rm -Rf $$i ; done
276 cp po/ChangeLog po/vlc.pot po/*.po tmp/vlc/po
277 for i in Makefile.in.in POTFILES.in ; do cp po/$$i tmp/vlc/po ; done
279 cp FAQ AUTHORS COPYING TODO todo.pl ChangeLog* README* INSTALL* \
280 ABOUT-NLS BUGS MODULES vlc.spec \
281 Makefile Makefile.*.in Makefile.dep Makefile.modules \
282 configure configure.in install-sh install-win32 macosx-dmg \
283 config.sub config.guess aclocal.m4 mkinstalldirs \
285 # Copy Debian control files
286 for file in debian/*dirs debian/*docs debian/*menu debian/*desktop \
287 debian/*copyright ; do cp $$file tmp/vlc/debian ; done
288 for file in control changelog rules ; do \
289 cp debian/$$file tmp/vlc/debian/ ; done
290 # Copy ipkg control files
291 for file in control rules patch ; do \
292 cp ipkg/$$file tmp/vlc/ipkg/ ; done
293 # Copy fonts and icons
294 for file in share/*vlc* share/*psf; do \
295 cp $$file tmp/vlc/share ; done
298 mv tmp/vlc tmp/$$F; (cd tmp ; \
299 cd $$F && $(MAKE) distclean && cd .. ; \
300 tar czf ../$$F.tar.gz $$F);
305 # XXX: this rule is probably only useful to you if you have exactly
306 # the same setup as me. Contact sam@zoy.org if you need to use it.
308 # Check that tmp isn't in the way
309 @if test -e tmp; then \
310 echo "Error: please remove ./tmp, it is in the way"; false; \
312 echo "OK."; mkdir tmp; \
314 # Create installation script
315 cp install-win32 tmp/nsi
316 # Copy relevant files
319 cp INSTALL.win32 tmp/INSTALL.txt ; unix2dos tmp/INSTALL.txt
320 for file in AUTHORS COPYING ChangeLog README FAQ TODO ; \
321 do cp $$file tmp/$${file}.txt ; \
322 unix2dos tmp/$${file}.txt ; done
325 for i in $(PLUGINS) ; do \
326 DIR=`echo $$i | cut -f1 -d/` ; \
327 mkdir -p tmp/plugins/$$DIR ; \
328 cp modules/$$i.so tmp/plugins/$$DIR ; \
329 if test $$i != gui/win32/win32 ; then \
331 tmp/plugins/$$DIR/`echo $$i | sed -e 's@.*/@@'`.so ; \
336 for file in default8x16.psf default8x9.psf ; \
337 do cp share/$$file tmp/share/ ; done
339 wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} /CD tmp/nsi
344 # Check that tmp isn't in the way
345 @if test -e tmp; then \
346 echo "Error: please remove ./tmp, it is in the way"; false; \
348 echo "OK."; mkdir tmp; \
352 mkdir -p tmp/vlc/share
353 # Copy relevant files
356 xres -o tmp/vlc/vlc ./share/vlc_beos.rsrc
357 cp AUTHORS COPYING ChangeLog README FAQ TODO tmp/vlc/
358 for file in default8x16.psf default8x9.psf ; \
359 do cp share/$$file tmp/vlc/share/ ; done
360 mkdir tmp/vlc/modules
361 cp $(PLUGINS:%=modules/%.so) tmp/vlc/modules/
362 strip $(PLUGINS:%=tmp/vlc/modules/%.so)
364 mv tmp/vlc tmp/vlc-${VERSION}
365 (cd tmp ; find vlc-${VERSION} | \
366 zip -9 -@ vlc-${VERSION}-BeOS-x86.zip )
367 mv tmp/vlc-${VERSION}-BeOS-x86.zip .
372 # Check that tmp isn't in the way
373 @if test -e tmp; then \
374 echo "Error: please remove ./tmp, it is in the way"; false; \
376 echo "OK."; mkdir tmp; \
379 # Copy relevant files
381 cp AUTHORS COPYING ChangeLog README README.MacOSX.rtf FAQ TODO tmp/
384 ./macosx-dmg 0 "vlc-${VERSION}" tmp/*
390 # Gtk/Gnome/* aliases and OS X application
392 gnome-vlc gvlc kvlc qvlc: vlc
393 rm -f $@ && ln -s vlc $@
397 ifneq (,$(findstring darwin,$(SYS)))
399 cd extras/MacOSX ; pbxbuild | grep -v '^ ' | grep -v '^\t' | grep -v "^$$"
400 cp -r extras/MacOSX/build/vlc.bundle ./vlc.app
401 $(INSTALL) -d vlc.app/Contents/MacOS/share
402 $(INSTALL) -d vlc.app/Contents/MacOS/modules
403 $(INSTALL) vlc vlc.app/Contents/MacOS/
405 $(INSTALL) $(PLUGINS:%=modules/%.so) vlc.app/Contents/MacOS/modules
407 $(INSTALL) -m 644 share/*.psf vlc.app/Contents/MacOS/share
413 # Generic rules (see below)
415 src/misc/modules_builtin.h: Makefile.opts Makefile Makefile.config
416 @echo "make[$(MAKELEVEL)]: Creating \`$@'"
417 @rm -f $@ && cp $@.in $@
419 @for i in $(BUILTINS) ; do \
420 echo "int vlc_entry__modules_"`echo $$i | sed -e 'y@/@_@' -e 's@\..*@@'`"( module_t* );" >>$@; \
424 @echo "#define ALLOCATE_ALL_BUILTINS() \\" >> $@ ;
425 @echo " do \\" >> $@ ;
426 @echo " { \\" >> $@ ;
428 @for i in $(BUILTINS) ; do \
429 echo " ALLOCATE_BUILTIN(modules_"`echo $$i | sed -e 'y@/@_@' -e 's@\..*@@'`"); \\" >> $@ ; \
432 @echo " } while( 0 );" >> $@ ;
436 @$(MAKE) -s --no-print-directory -f Makefile.dep $@
438 $(CPP_DEP): %.dpp: FORCE
439 @$(MAKE) -s --no-print-directory -f Makefile.dep $@
441 $(C_OBJ): %.o: Makefile.opts Makefile.dep Makefile
442 $(C_OBJ): %.o: $(H_OBJ)
443 $(C_OBJ): %.o: .dep/%.d
445 $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
447 $(CPP_OBJ): %.o: Makefile.opts Makefile.dep Makefile
448 $(CPP_OBJ): %.o: $(H_OBJ)
449 $(CPP_OBJ): %.o: .dep/%.dpp
450 $(CPP_OBJ): %.o: %.cpp
451 $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
453 $(M_OBJ): %.o: Makefile.opts Makefile.dep Makefile
454 $(M_OBJ): %.o: $(H_OBJ)
455 $(M_OBJ): %.o: .dep/%.dm
457 $(CC) $(CFLAGS) $(vlc_CFLAGS) -c -o $@ $<
459 $(RESOURCE_OBJ): %.o: Makefile.dep Makefile
460 ifneq (,(findstring mingw32,$(SYS)))
461 $(RESOURCE_OBJ): %.o: %.rc
462 $(WINDRES) -i $< -o $@
466 # Main application target
468 vlc: Makefile.config Makefile.opts Makefile.dep Makefile $(VLC_OBJ) lib/libvlc.a $(BUILTIN_OBJ)
469 $(CC) $(CFLAGS) -o $@ $(VLC_OBJ) lib/libvlc.a $(LDFLAGS) $(vlc_LDFLAGS) $(BUILTIN_OBJ) $(builtins_LDFLAGS)
471 xres -o $@ ./share/vlc_beos.rsrc
476 # Main library target
478 lib/libvlc.a: Makefile.opts Makefile.dep Makefile $(LIBVLC_OBJ)
480 ar rc $@ $(LIBVLC_OBJ)
484 # DO NOT DISTRIBUTE SHARED VERSIONS OF LIBVLC UNTIL THE ABI IS STABLE
485 # OR BURN IN HELL -- Sam
487 #lib/libvlc.so: Makefile.opts Makefile.dep Makefile $(LIBVLC_OBJ)
488 # $(CC) -shared $(LIBVLC_OBJ) $(LDFLAGS) $(vlc_LDFLAGS) -o $@
490 builtins: Makefile.modules Makefile.opts Makefile.dep Makefile $(BUILTIN_OBJ)
491 plugins: Makefile.modules Makefile.opts Makefile.dep Makefile $(PLUGIN_OBJ)
493 modules/%.a modules/%.so: $(H_OBJ) FORCE
494 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@') MODULE_PATH=$(shell echo $@ | sed -e 'y@/@_@' -e 's@\..*@@')
497 # Mozilla plugin target
499 mozilla/libvlcplugin.so: FORCE
501 @cd mozilla && $(MAKE) builtins_LDFLAGS="$(builtins_LDFLAGS)"