]> git.sesse.net Git - vlc/blob - Makefile.am
Better ACL API (full rewrite)
[vlc] / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 NULL =
6
7 # SUBDIRS stores the directories where a "make" is required when building
8 # something. DIST_SUBDIRS stores the directories where nothing is built but
9 # which have makefiles with distribution information.
10 #  - intl should come before modules and . because all the code uses gettext
11 #  - modules should come before . because vlc needs the builtins
12 #  - . should come before mozilla because the plugin needs libvlc_pic.a
13 #  - po should come before . because VLC.app needs the pofiles
14 #  - loader should come before modules because some plugins need it
15 SUBDIRS = intl loader modules po . mozilla activex share m4 doc
16 DIST_SUBDIRS = $(SUBDIRS) src debian ipkg lib
17
18 EXTRA_DIST = \
19         HACKING \
20         INSTALL.win32 \
21         vlc.exe.manifest \
22         MAINTAINERS \
23         README.MacOSX.rtf \
24         bootstrap \
25         src/extras/COPYING \
26         toolbox \
27         vlc-api.pl \
28         vlc-config.in.in \
29         vlc.spec \
30         vlc.spec.mdk \
31         vlc.win32.nsi \
32         $(NULL)
33
34 BUILT_SOURCES =
35 SUFFIXES = 
36
37 # Tell aclocal to use -I m4. Wonder if it really works.
38 ACLOCAL_AMFLAGS = -I m4
39
40 # XXX: these flags could be set in configure.ac, but we set them here
41 # because old versions of automake don't support them in configure.ac.
42 AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects
43
44 ###############################################################################
45 # Headers
46 ###############################################################################
47
48 BUILT_SOURCES += \
49         stamp-api \
50         src/misc/modules_builtin.h \
51         $(NULL)
52
53 pkgincludedir = $(includedir)/vlc
54
55 dist_pkginclude_HEADERS = \
56         include/vlc/vlc.h \
57         include/vlc/aout.h \
58         include/vlc/vout.h \
59         include/vlc/sout.h \
60         include/vlc/decoder.h \
61         include/vlc/input.h \
62         include/vlc/intf.h \
63         include/vlc/control.h \
64         $(NULL)
65
66 noinst_HEADERS = $(HEADERS_include)
67
68 HEADERS_include = \
69         include/aout_internal.h \
70         include/audio_output.h \
71         include/beos_specific.h \
72         include/charset.h \
73         include/codecs.h \
74         include/configuration.h \
75         include/darwin_specific.h \
76         include/intf_eject.h \
77         include/iso_lang.h \
78         include/main.h \
79         include/mmx.h \
80         include/modules.h \
81         include/modules_inner.h \
82         include/mtime.h \
83         include/network.h \
84         include/osd.h \
85         include/os_specific.h \
86         include/snapshot.h \
87         include/stream_output.h \
88         include/variables.h \
89         include/video_output.h \
90         include/vlc_access.h \
91         include/vlc_acl.h \
92         include/vlc_bits.h \
93         include/vlc_block.h \
94         include/vlc_block_helper.h \
95         include/vlc_codec.h \
96         include/vlc_common.h \
97         include/vlc_config.h \
98         include/vlc_cpu.h \
99         include/vlc_demux.h \
100         include/vlc_error.h \
101         include/vlc_es.h \
102         include/vlc_es_out.h \
103         include/vlc_filter.h \
104         include/vlc_config_cat.h \
105         include/vlc_httpd.h \
106         include/vlc_tls.h \
107         include/vlc_md5.h \
108         include/vlc_image.h \
109         include/vlc_input.h \
110         include/vlc_interface.h \
111         include/vlc_keys.h \
112         include/vlc_messages.h \
113         include/vlc_meta.h \
114         include/vlc_objects.h \
115         include/vlc_playlist.h \
116         include/vlc_spu.h \
117         include/vlc_stream.h \
118         include/vlc_symbols.h \
119         include/vlc_threads_funcs.h \
120         include/vlc_threads.h \
121         include/vlc_video.h \
122         include/vlc_vlm.h \
123         include/vlc_vod.h \
124         include/vlc_xml.h \
125         include/vout_synchro.h \
126         include/win32_specific.h \
127         $(NULL)
128
129 src/misc/modules_builtin.h: Makefile src/misc/modules_builtin.h.in vlc-config
130         srcdir=$(srcdir) $(srcdir)/toolbox --update-includes
131         touch $@
132
133 # These dependencies are mandatory
134 $(SOURCES_libvlc): src/misc/modules_builtin.h $(LIB_intl)
135
136 ###############################################################################
137 # Optional libintl - FIXME, bad dependencies
138 ###############################################################################
139
140 intl/libintl.a: FORCE
141         cd $(top_builddir)/intl && $(MAKE) $(AM_MAKEFLAGS)
142
143 if BUILD_INTL
144 LIB_intl = intl/libintl.a
145 endif
146
147 ###############################################################################
148 # MacOS X project
149 ###############################################################################
150
151 EXTRA_DIST += \
152         extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib \
153         extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib \
154         extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib \
155         extras/MacOSX/Resources/English.lproj/About.nib/classes.nib \
156         extras/MacOSX/Resources/English.lproj/About.nib/info.nib \
157         extras/MacOSX/Resources/English.lproj/About.nib/keyedobjects.nib \
158         extras/MacOSX/Resources/English.lproj/Open.nib/classes.nib \
159         extras/MacOSX/Resources/English.lproj/Open.nib/info.nib \
160         extras/MacOSX/Resources/English.lproj/Open.nib/keyedobjects.nib \
161         extras/MacOSX/Resources/English.lproj/Preferences.nib/classes.nib \
162         extras/MacOSX/Resources/English.lproj/Preferences.nib/info.nib \
163         extras/MacOSX/Resources/English.lproj/Preferences.nib/keyedobjects.nib \
164         extras/MacOSX/Resources/English.lproj/Wizard.nib/classes.nib \
165         extras/MacOSX/Resources/English.lproj/Wizard.nib/info.nib \
166         extras/MacOSX/Resources/English.lproj/Wizard.nib/keyedobjects.nib \
167         extras/MacOSX/Resources/English.lproj/InfoPlist.strings \
168         extras/MacOSX/Resources/a52.icns \
169         extras/MacOSX/Resources/aac.icns \
170         extras/MacOSX/Resources/asf.icns \
171         extras/MacOSX/Resources/asx.icns \
172         extras/MacOSX/Resources/avi.icns \
173         extras/MacOSX/Resources/bin.icns \
174         extras/MacOSX/Resources/cue.icns \
175         extras/MacOSX/Resources/dat.icns \
176         extras/MacOSX/Resources/divx.icns \
177         extras/MacOSX/Resources/dv.icns \
178         extras/MacOSX/Resources/generic.icns \
179         extras/MacOSX/Resources/m3u.icns \
180         extras/MacOSX/Resources/mov.icns \
181         extras/MacOSX/Resources/mp3.icns \
182         extras/MacOSX/Resources/mp4.icns \
183         extras/MacOSX/Resources/mpeg.icns \
184         extras/MacOSX/Resources/mpeg1.icns \
185         extras/MacOSX/Resources/mpeg2.icns \
186         extras/MacOSX/Resources/mpeg4.icns \
187         extras/MacOSX/Resources/mpg.icns \
188         extras/MacOSX/Resources/ogg.icns \
189         extras/MacOSX/Resources/ogm.icns \
190         extras/MacOSX/Resources/pls.icns \
191         extras/MacOSX/Resources/srt.icns \
192         extras/MacOSX/Resources/sub.icns \
193         extras/MacOSX/Resources/vlc.icns \
194         extras/MacOSX/Resources/vob.icns \
195         extras/MacOSX/Resources/wma.icns \
196         extras/MacOSX/Resources/wmv.icns \
197         extras/MacOSX/Resources/pause.png \
198         extras/MacOSX/Resources/pause_blue.png \
199         extras/MacOSX/Resources/play.png \
200         extras/MacOSX/Resources/play_blue.png \
201         extras/MacOSX/Resources/stop.png \
202         extras/MacOSX/Resources/stop_blue.png \
203         extras/MacOSX/Resources/display.png \
204         extras/MacOSX/Resources/display_slider.png \
205         extras/MacOSX/Resources/display_track.png \
206         extras/MacOSX/Resources/equalizerdrawer_active.png \
207         extras/MacOSX/Resources/equalizerdrawer_blue.png \
208         extras/MacOSX/Resources/fullscreen_active.png \
209         extras/MacOSX/Resources/fullscreen_blue.png \
210         extras/MacOSX/Resources/next_active.png \
211         extras/MacOSX/Resources/next_blue.png \
212         extras/MacOSX/Resources/playlistdrawer_active.png \
213         extras/MacOSX/Resources/playlistdrawer_blue.png \
214         extras/MacOSX/Resources/previous_active.png \
215         extras/MacOSX/Resources/previous_blue.png \
216         extras/MacOSX/Resources/skip_forward_active.png \
217         extras/MacOSX/Resources/skip_forward_blue.png \
218         extras/MacOSX/Resources/skip_previous_active.png \
219         extras/MacOSX/Resources/skip_previous_blue.png \
220         extras/MacOSX/Resources/volume_high.png \
221         extras/MacOSX/Resources/volume_low.png \
222         extras/MacOSX/Resources/volumeslider_blue.png \
223         extras/MacOSX/Resources/volumeslider_normal.png \
224         extras/MacOSX/Resources/volumetrack.png \
225         extras/MacOSX/Resources/about_bg.png \
226         extras/MacOSX/Resources/vlc.scriptSuite \
227         extras/MacOSX/Resources/vlc.scriptTerminology \
228         extras/MacOSX/Resources/README \
229         extras/MacOSX/vlc.pbproj/project.pbxproj \
230         extras/MacOSX/macosx-dmg \
231         $(NULL)
232
233 ###############################################################################
234 # MS Visual Studio and eMbedded Visual Studio projects
235 ###############################################################################
236
237 EXTRA_DIST += \
238         msvc/vlc.dsw \
239         msvc/libvlc.dsp.in \
240         msvc/plugins.dsp.in \
241         msvc/vlc.dsp.in \
242         msvc/config.h.in \
243         msvc/modules_builtin_msvc.h \
244         evc/vlc.vcw \
245         evc/libvlc.vcp.in \
246         evc/vlc.vcp.in \
247         evc/plugins.vcp.in \
248         evc/errno.h \
249         evc/config.h.in \
250         evc/modules_builtin_evc.h \
251         $(NULL)
252
253 dist-hook:
254         cd $(distdir) && srcdir=$(srcdir) $(srcdir)/toolbox --update-vc
255         distdir=$(distdir) srcdir=$(srcdir) $(srcdir)/toolbox --dist-contrib
256
257 ###############################################################################
258 # Building libvlc
259 ###############################################################################
260
261 bin_SCRIPTS = vlc-config
262 vlc-config: $(top_builddir)/config.status $(top_builddir)/vlc-config.in
263         cd $(top_builddir) && $(SHELL) ./config.status --file=$@
264         -cd $(top_builddir) && chmod 0755 $@
265
266 $(SOURCES): vlc-config
267
268 CLEANFILES = $(BUILT_SOURCES)
269
270 lib_LIBRARIES = lib/libvlc.a $(LIBRARIES_libvlc_pic)
271
272 lib_libvlc_a_SOURCES = $(SOURCES_libvlc)
273 lib_libvlc_a_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
274 lib_libvlc_a_CXXFLAGS = `$(VLC_CONFIG) --cxxflags vlc`
275 lib_libvlc_a_OBJCFLAGS = `$(VLC_CONFIG) --objcflags vlc`
276
277 lib_libvlc_pic_a_SOURCES = $(SOURCES_libvlc)
278 lib_libvlc_pic_a_CFLAGS = `$(VLC_CONFIG) --cflags vlc pic`
279 lib_libvlc_pic_a_CXXFLAGS = `$(VLC_CONFIG) --cxxflags vlc pic`
280 lib_libvlc_pic_a_OBJCFLAGS = `$(VLC_CONFIG) --objcflags vlc pic`
281
282 if HAVE_BEOS
283 OPT_SOURCES_libvlc_beos = $(SOURCES_libvlc_beos)
284 endif
285 if HAVE_DARWIN
286 OPT_SOURCES_libvlc_darwin = $(SOURCES_libvlc_darwin)
287 endif
288 if HAVE_WIN32
289 OPT_SOURCES_libvlc_win32 = $(SOURCES_libvlc_win32)
290 endif
291 if HAVE_WINCE
292 OPT_SOURCES_libvlc_win32 = $(SOURCES_libvlc_win32)
293 endif
294 if BUILD_DIRENT
295 OPT_SOURCES_libvlc_dirent = $(SOURCES_libvlc_dirent)
296 endif
297 if BUILD_GETOPT
298 OPT_SOURCES_libvlc_getopt = $(SOURCES_libvlc_getopt)
299 endif
300 if BUILD_MOZILLA
301 if !HAVE_WIN32
302 LIBRARIES_libvlc_pic = lib/libvlc_pic.a
303 endif
304 endif
305
306 EXTRA_DIST += \
307         $(SOURCES_libvlc_beos) \
308         $(SOURCES_libvlc_darwin) \
309         $(SOURCES_libvlc_win32) \
310         $(SOURCES_libvlc_dirent) \
311         $(SOURCES_libvlc_getopt) \
312         $(NULL)
313
314 SOURCES_libvlc_beos = \
315         src/misc/beos_specific.cpp \
316         $(NULL)
317
318 SOURCES_libvlc_darwin = \
319         src/misc/darwin_specific.m \
320         $(NULL)
321
322 SOURCES_libvlc_win32 = \
323         src/misc/win32_specific.c \
324         $(NULL)
325
326 SOURCES_libvlc_dirent = \
327         src/extras/dirent.c \
328         $(NULL)
329
330 SOURCES_libvlc_getopt = \
331         src/extras/getopt.c \
332         src/extras/getopt.h \
333         src/extras/getopt1.c \
334         $(NULL)
335
336 SOURCES_libvlc_common = \
337         src/libvlc.c \
338         src/libvlc.h \
339         src/interface/interface.c \
340         src/interface/intf_eject.c \
341         src/playlist/playlist.c \
342         src/playlist/sort.c \
343         src/playlist/loadsave.c \
344         src/playlist/view.c \
345         src/playlist/item.c \
346         src/playlist/item-ext.c \
347         src/playlist/services_discovery.c \
348         src/input/access.c \
349         src/input/clock.c \
350         src/input/control.c \
351         src/input/decoder.c \
352         src/input/demux.c \
353         src/input/es_out.c \
354         src/input/input.c \
355         src/input/input_internal.h \
356         src/input/stream.c \
357         src/input/mem_stream.c \
358         src/input/subtitles.c \
359         src/input/var.c \
360         src/video_output/video_output.c \
361         src/video_output/vout_pictures.c \
362         src/video_output/vout_pictures.h \
363         src/video_output/video_text.c \
364         src/video_output/video_widgets.c \
365         src/video_output/vout_subpictures.c \
366         src/video_output/vout_synchro.c \
367         src/video_output/vout_intf.c \
368         src/audio_output/common.c \
369         src/audio_output/dec.c \
370         src/audio_output/filters.c \
371         src/audio_output/input.c \
372         src/audio_output/mixer.c \
373         src/audio_output/output.c \
374         src/audio_output/intf.c \
375         src/stream_output/stream_output.c \
376         src/stream_output/announce.c \
377         src/stream_output/sap.c \
378         src/stream_output/acl.c \
379         src/misc/charset.c \
380         src/misc/httpd.c \
381         src/misc/tls.c \
382         src/misc/md5.c \
383         src/misc/mtime.c \
384         src/misc/block.c \
385         src/misc/modules.c \
386         src/misc/threads.c \
387         src/misc/cpu.c \
388         src/misc/configuration.c \
389         src/misc/image.c \
390         src/misc/iso_lang.c \
391         src/misc/iso-639_def.h \
392         src/misc/messages.c \
393         src/misc/objects.c \
394         src/misc/variables.c \
395         src/misc/error.c \
396         src/misc/net.c \
397         src/misc/getaddrinfo.c \
398         src/misc/vlm.c \
399         src/misc/xml.c \
400         src/extras/libc.c \
401         src/control/core.c \
402         src/control/util.c \
403         src/control/audio_video.c \
404         $(NULL)
405
406 SOURCES_libvlc = \
407         $(SOURCES_libvlc_common) \
408         $(OPT_SOURCES_libvlc_beos) \
409         $(OPT_SOURCES_libvlc_darwin) \
410         $(OPT_SOURCES_libvlc_win32) \
411         $(OPT_SOURCES_libvlc_dirent) \
412         $(OPT_SOURCES_libvlc_getopt) \
413         $(NULL)
414
415 ###############################################################################
416 # Building vlc
417 ###############################################################################
418
419 bin_PROGRAMS = vlc
420
421 vlc_SOURCES = src/vlc.c
422
423 # Work around a bug in the arm-wince-pe linker
424 if HAVE_WINCE
425 vlc_WORKAROUNDLDFLAGS = lib/libvlc.a
426 endif
427
428 vlc_LDFLAGS = `$(VLC_CONFIG) --libs vlc builtin` $(vlc_WORKAROUNDLDFLAGS)
429 vlc_LDADD = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl)
430 vlc_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
431
432 # We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an
433 # old automake-1.5 bug (automake/279).
434 DEPENDENCIES_vlc = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl)
435
436 vlc$(EXEEXT): $(vlc_OBJECTS) $(DEPENDENCIES_vlc) stamp-builtin
437         @rm -f $(top_builddir)/vlc$(EXEEXT)
438         @case `$(VLC_CONFIG) --linkage vlc builtin` in \
439           c++) echo $(CXXLINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ; $(CXXLINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ;; \
440           objc) echo $(OBJCLINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ; $(OBJCLINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ;; \
441           c|*) echo $(LINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ; $(LINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ;; \
442         esac
443
444 if HAVE_BEOS
445 noinst_DATA = vlc-bundle
446 vlc-bundle: vlc
447         rm -Rf $(top_builddir)/vlc-bundle ; mkdir -p $(top_builddir)/vlc-bundle
448         cp $(top_builddir)/vlc $(top_builddir)/vlc-bundle/
449         xres -o $(top_builddir)/vlc-bundle/vlc $(srcdir)/share/vlc_beos.rsrc
450         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
451           if test -n "$$i" ; then \
452             mkdir -p $(top_builddir)/vlc-bundle/plugins ; \
453             cp "$$i$(LIBEXT)" $(top_builddir)/vlc-bundle/plugins/ ; \
454           fi ; \
455         done
456         if test -d $(top_builddir)/extras/contrib/vlc-lib ; then \
457           mkdir -p $(top_builddir)/vlc-bundle/lib ; \
458           for i in $(top_builddir)/extras/contrib/vlc-lib/*.so ; do \
459             cp $$i $(top_builddir)/vlc-bundle/lib/ ; \
460           done ; \
461         fi
462         for i in $(ALL_LINGUAS); do \
463           mkdir -p "$(top_builddir)/vlc-bundle/locale/$$i/LC_MESSAGES" ; \
464           cp "$(top_builddir)/po/$$i.gmo" \
465             "$(top_builddir)/vlc-bundle/locale/$$i/LC_MESSAGES/vlc.mo" || true ; \
466         done
467         find $(top_builddir)/vlc-bundle -type f -exec mimeset -f "{}" \;
468 endif
469
470 # Install the modules and the symlinks
471 install-exec-local:
472         for i in "" `$(VLC_CONFIG) --target plugin` ; do if test -n "$$i" ; then \
473           echo $(INSTALL) -m 755 "$$i$(LIBEXT)" "$(DESTDIR)$(libdir)/vlc/`echo $$i | sed -e 's,.*modules/\([^/]*\).*,\1,'`" ; \
474           $(INSTALL) -m 755 "$$i$(LIBEXT)" "$(DESTDIR)$(libdir)/vlc/`echo $$i | sed -e 's,.*modules/\([^/]*\).*,\1,'`" ; \
475         fi ; done
476         for i in "" `$(VLC_CONFIG) --target builtin` ; do if test -n "$$i" ; then \
477           echo $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \
478           $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \
479         fi ; done
480 if BUILD_MOZILLA
481         for i in "" `$(VLC_CONFIG) --target builtin pic` ; do if test -n "$$i" ; then \
482           echo $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \
483           $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \
484         fi ; done
485 endif
486         for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
487           rm -f "$(DESTDIR)$(bindir)/$$i" && \
488           ln -s vlc "$(DESTDIR)$(bindir)/$$i" ; \
489         fi ; done
490
491 # the opposite of install-{data,exec}-local
492 uninstall-local:
493         @for i in "" `$(VLC_CONFIG) --target plugin` ; do if test -n "$$i" ; then \
494           echo rm -f "$(DESTDIR)$(libdir)/vlc/`echo $$i | sed -e 's,.*modules/\([^/]*\).*,\1,'`/$$(basename $$i$(LIBEXT))" ; \
495           rm -f "$(DESTDIR)$(libdir)/vlc/`echo $$i | sed -e 's,.*modules/\([^/]*\).*,\1,'`/$$(basename $$i$(LIBEXT))" ; \
496         fi ; done
497         @for i in "" `$(VLC_CONFIG) --target builtin` ; do if test -n "$$i" ; then \
498           echo rm -f "$(DESTDIR)$(libdir)/vlc/$$(basename $$i)" ; \
499           rm -f "$(DESTDIR)$(libdir)/vlc/$$(basename $$i)" ; \
500         fi ; done
501 if BUILD_MOZILLA
502         @for i in "" `$(VLC_CONFIG) --target builtin pic` ; do if test -n "$$i" ; then \
503           echo rm -f "$$i" "$(DESTDIR)$(libdir)/vlc/$$(basename $$i)" ; \
504           rm -f "$$i" "$(DESTDIR)$(libdir)/vlc/$$(basename $$i)" ; \
505         fi ; done
506 endif
507         for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
508           rm -f "$(DESTDIR)$(bindir)/$$i" ; \
509         fi ; done
510
511 if HAVE_DARWIN
512 # Create the MacOS X app
513 vlc_app_DATA = VLC.app
514 vlc_appdir = $(bindir)
515 # VLC-release.app is the old VLC.app target
516 VLC-release.app: vlc
517         @if test -e "$(top_builddir)/tmp"; then \
518           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
519           false; \
520         else \
521           echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
522         fi
523         rm -Rf $(top_builddir)/VLC-release.app
524         cp -r $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
525         for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
526           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
527         done
528         mkdir -p $(top_builddir)/tmp/modules/audio_output
529         cp $(srcdir)/modules/audio_output/coreaudio.c \
530            $(top_builddir)/tmp/modules/audio_output/coreaudio.c
531         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
532         for i in \
533             about.h \
534             about.m \
535             applescript.h \
536             applescript.m \
537             controls.h \
538             controls.m \
539             equalizer.h \
540             equalizer.m \
541             intf.h \
542             intf.m \
543             macosx.m \
544             misc.h \
545             misc.m \
546             open.h \
547             open.m \
548             output.h \
549             output.m \
550             playlist.h \
551             playlist.m \
552             playlistinfo.h \
553             playlistinfo.m \
554             prefs_widgets.h \
555             prefs_widgets.m \
556             prefs.h \
557             prefs.m \
558             vout.h \
559             voutqt.m \
560             voutgl.m \
561             wizard.h \
562             wizard.m \
563             vout.m; do \
564           cp "$(srcdir)/modules/gui/macosx/$$i" \
565              $(top_builddir)/tmp/modules/gui/macosx; \
566         done
567         cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)'
568         cp -r $(top_builddir)/tmp/extras/MacOSX/build/VLC.bundle \
569               $(top_builddir)/VLC-release.app
570         rm -Rf $(top_builddir)/tmp
571         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS
572         $(INSTALL) $(top_builddir)/vlc \
573                    $(top_builddir)/VLC-release.app/Contents/MacOS/VLC
574         ln -sf ./VLC $(top_builddir)/VLC-release.app/Contents/MacOS/clivlc
575         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/modules
576         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
577           if test -n "$$i" ; \
578             then $(INSTALL) "$$i$(LIBEXT)" \
579                            "$(top_builddir)/VLC-release.app/Contents/MacOS/modules" ; \
580           fi ; done
581         if test -d $(top_builddir)/extras/contrib/vlc-lib; then \
582           mkdir -p $(top_builddir)/VLC-release.app/Contents/MacOS/lib ; \
583           for i in $(top_builddir)/extras/contrib/vlc-lib/*.dylib ; do \
584             $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/lib/vlc_`basename $${i}` ; \
585           done ; \
586         fi
587         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share
588         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http
589         for i in $(srcdir)/share/http/* ; do \
590           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/`basename $${i}` ; \
591         done ; \
592         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/vlm
593         for i in $(srcdir)/share/http/vlm/* ; do \
594           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/vlm/`basename $${i}` ; \
595         done ; \
596         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/admin
597         for i in $(srcdir)/share/http/admin/* ; do \
598           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/admin/`basename $${i}` ; \
599         done ; \
600         $(INSTALL) -m 644 $(srcdir)/share/http/admin/.access $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/admin/.access
601         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/locale
602         for i in $(ALL_LINGUAS); do \
603           mkdir -p $(top_builddir)/VLC-release.app/Contents/MacOS/locale/$${i}/LC_MESSAGES ; \
604           cp $(srcdir)/po/$${i}.gmo $(top_builddir)/VLC-release.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
605           mkdir -p $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
606           ln -sf ../English.lproj/InfoPlist.strings \
607               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
608           ln -sf ../English.lproj/MainMenu.nib \
609               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
610           ln -sf ../English.lproj/vlc.scriptTerminology \
611               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
612         done
613         printf "APPLVLC#" >| $(top_builddir)/VLC-release.app/Contents/PkgInfo
614
615 VLC.app: vlc
616         @if test -e "$(top_builddir)/tmp"; then \
617           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
618           false; \
619         else \
620           echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
621         fi
622         rm -Rf $(top_builddir)/VLC.app
623         cp -r $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
624         for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
625           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
626         done
627         mkdir -p $(top_builddir)/tmp/modules/audio_output
628         cp $(srcdir)/modules/audio_output/coreaudio.c \
629            $(top_builddir)/tmp/modules/audio_output/coreaudio.c
630         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
631         for i in \
632             about.h \
633             about.m \
634             applescript.h \
635             applescript.m \
636             controls.h \
637             controls.m \
638             equalizer.h \
639             equalizer.m \
640             intf.h \
641             intf.m \
642             macosx.m \
643             misc.h \
644             misc.m \
645             open.h \
646             open.m \
647             output.h \
648             output.m \
649             playlist.h \
650             playlist.m \
651             playlistinfo.h \
652             playlistinfo.m \
653             prefs_widgets.h \
654             prefs_widgets.m \
655             prefs.h \
656             prefs.m \
657             vout.h \
658             voutqt.m \
659             voutgl.m \
660             wizard.h \
661             wizard.m \
662             vout.m; do \
663           cp "$(srcdir)/modules/gui/macosx/$$i" \
664              $(top_builddir)/tmp/modules/gui/macosx; \
665         done
666         cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)'
667         cp -r $(top_builddir)/tmp/extras/MacOSX/build/VLC.bundle \
668               $(top_builddir)/VLC.app
669         rm -Rf $(top_builddir)/tmp
670         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS
671         $(INSTALL) $(top_builddir)/vlc \
672                    $(top_builddir)/VLC.app/Contents/MacOS/VLC
673         ln -sf ./VLC $(top_builddir)/VLC.app/Contents/MacOS/clivlc
674         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/modules
675         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
676           if test -n "$$i" ; \
677             then ln -sfn "`pwd`/$$i$(LIBEXT)" \
678                            "$(top_builddir)/VLC.app/Contents/MacOS/modules" ; \
679           fi ; done
680         if test -d $(top_builddir)/extras/contrib/vlc-lib; then \
681           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/lib ; \
682           for i in $(top_builddir)/extras/contrib/vlc-lib/*.dylib ; do \
683             ln -sfn `pwd`/$${i} $(top_builddir)/VLC.app/Contents/MacOS/lib/vlc_`basename $${i}` ; \
684           done ; \
685         fi
686         ln -sfn `pwd`/share $(top_builddir)/VLC.app/Contents/MacOS/
687         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/locale
688         for i in $(ALL_LINGUAS); do \
689           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES ; \
690           ln -sfn `pwd`/po/$${i}.gmo $(top_builddir)/VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
691           mkdir -p $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
692           ln -sf ../English.lproj/InfoPlist.strings \
693               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
694           ln -sf ../English.lproj/MainMenu.nib \
695               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
696         done
697         printf "APPLVLC#" >| $(top_builddir)/VLC.app/Contents/PkgInfo
698 endif
699
700 if HAVE_WIN32
701 DATA_win32_rc = $(noinst_share_vlc_win32_rc_DATA)
702 noinst_share_vlc_win32_rc_DATA = share/vlc_win32_rc.$(OBJEXT)
703 noinst_share_vlc_win32_rcdir = $(libdir)
704 share/vlc_win32_rc.$(OBJEXT): share/vlc_win32_rc.rc
705         $(WINDRES) -DVERSION=$(VERSION) -DVERSION_NUMBER=`echo $(VERSION).0.0.0 | sed 's/\([0-9]*\)[^.]*\.*\([0-9]*\)[^.]*\.*\([0-9]*\)[^.]*\.*\([0-9]*\).*/\1,\2,\3,\4/'` --include-dir $(srcdir)/share -i $< -o $@
706 endif
707
708 ###############################################################################
709 # Building specific source packages
710 ###############################################################################
711
712 dist-woody: distdir
713         $(remove_distdir_woody)
714         mv $(distdir) $(PACKAGE)-woody-$(VERSION)
715         $(srcdir)/toolbox --make-woody $(PACKAGE)-woody-$(VERSION)
716         $(AMTAR) chof - $(PACKAGE)-woody-$(VERSION) \
717           | GZIP=$(GZIP_ENV) gzip -c >$(PACKAGE)-woody-$(VERSION).tar.gz
718         $(remove_distdir_woody)
719
720 remove_distdir_woody = \
721   { test ! -d $(PACKAGE)-woody-$(VERSION) \
722     || { find $(PACKAGE)-woody-$(VERSION) -type d ! -perm -200 \
723            -exec chmod u+w {} ';' \
724          && rm -fr $(PACKAGE)-woody-$(VERSION); }; }
725
726 ###############################################################################
727 # Building architecture-specific binary packages
728 ###############################################################################
729
730 # XXX: this rule is probably only useful to you if you have exactly
731 # the same setup as me. Contact sam@zoy.org if you need to use it.
732 #
733 package-win32-base:
734 # Check that tmp isn't in the way
735         @if test -e "$(top_builddir)/vlc-${VERSION}"; then \
736           echo "Error: please remove $(top_builddir)/vlc-${VERSION}, it is in the way"; \
737           false; \
738         else \
739           echo "OK."; mkdir -p "$(top_builddir)/vlc-${VERSION}"; \
740         fi
741
742 # Copy relevant files
743         cp "$(srcdir)/vlc.win32.nsi" "$(top_builddir)/vlc-${VERSION}/"
744         cp "$(top_builddir)/vlc$(EXEEXT)" "$(top_builddir)/vlc-${VERSION}/"
745         cp "$(top_srcdir)/vlc.exe.manifest" "$(top_builddir)/vlc-${VERSION}/"
746         $(STRIP) "$(top_builddir)/vlc-${VERSION}/vlc$(EXEEXT)"
747
748         for file in AUTHORS MAINTAINERS THANKS NEWS COPYING README ; \
749           do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(top_builddir)/vlc-${VERSION}/$${file}.txt" ; \
750           unix2dos "$(top_builddir)/vlc-${VERSION}/$${file}.txt" ; done
751
752         mkdir -p "$(top_builddir)/vlc-${VERSION}/plugins"
753         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
754           if test -n "$$i" ; then \
755             $(INSTALL) "$(top_builddir)/$$i$(LIBEXT)" \
756             "$(top_builddir)/vlc-${VERSION}/plugins/" ; \
757           fi ; done
758
759         for i in "" $(top_builddir)/vlc-${VERSION}/plugins/*$(LIBEXT) ; \
760           do if test -n "$$i" ; then $(STRIP) "$$i" ; fi ; done
761
762         mkdir $(top_builddir)/vlc-${VERSION}/locale
763         for i in $(ALL_LINGUAS); do \
764           mkdir -p "$(top_builddir)/vlc-${VERSION}/locale/$${i}/LC_MESSAGES" ; \
765           cp "$(srcdir)/po/$${i}.gmo" \
766             "$(top_builddir)/vlc-${VERSION}/locale/$${i}/LC_MESSAGES/vlc.mo" \
767             || true ; \
768         done
769
770         mkdir -p $(top_builddir)/vlc-${VERSION}/skins/fonts
771         for i in $(srcdir)/share/skins2/fonts/*.*; do \
772           cp $$i $(top_builddir)/vlc-${VERSION}/skins/fonts/ || true ; \
773         done
774         for i in $(srcdir)/share/skins2/*.*; do \
775           cp $$i $(top_builddir)/vlc-${VERSION}/skins/ || true ; \
776         done
777
778         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/admin"
779         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/vlm"
780         cp $(srcdir)/share/http/*.html $(top_builddir)/vlc-${VERSION}/http/ ;
781         unix2dos $(top_builddir)/vlc-${VERSION}/http/*.html ;
782         cp $(srcdir)/share/http/*.css $(top_builddir)/vlc-${VERSION}/http/ ;
783         unix2dos $(top_builddir)/vlc-${VERSION}/http/*.css ;
784         cp $(srcdir)/share/http/*.png $(top_builddir)/vlc-${VERSION}/http/
785         cp $(srcdir)/share/http/*.ico $(top_builddir)/vlc-${VERSION}/http/ ;
786         cp $(srcdir)/share/http/admin/*.html \
787            $(top_builddir)/vlc-${VERSION}/http/admin/ ;
788         unix2dos $(top_builddir)/vlc-${VERSION}/http/admin/*.html ;
789         cp $(srcdir)/share/http/admin/dboxfiles.html \
790            $(top_builddir)/vlc-${VERSION}/http/admin/ ;
791         cp $(srcdir)/share/http/admin/.access \
792            $(top_builddir)/vlc-${VERSION}/http/admin/ ;
793         unix2dos $(top_builddir)/vlc-${VERSION}/http/admin/.access ;
794         cp $(srcdir)/share/http/vlm/*.html \
795            $(top_builddir)/vlc-${VERSION}/http/vlm/ ;
796         unix2dos $(top_builddir)/vlc-${VERSION}/http/vlm/*.html ;
797
798         cp $(srcdir)/share/vlc48x48new.ico $(top_builddir)/vlc-${VERSION}/ ;
799
800         mkdir -p "$(top_builddir)/vlc-${VERSION}/mozilla"
801 if BUILD_MOZILLA
802         cp $(top_builddir)/mozilla/*$(LIBEXT) $(top_builddir)/vlc-${VERSION}/mozilla/ ;
803         $(STRIP) $(top_builddir)/vlc-${VERSION}/mozilla/*$(LIBEXT);
804         cp $(top_builddir)/mozilla/vlcintf.xpt  $(top_builddir)/vlc-${VERSION}/mozilla/ ;
805 endif
806
807         mkdir -p "$(top_builddir)/vlc-${VERSION}/activex"
808 if BUILD_ACTIVEX
809         cp $(srcdir)/activex/README.TXT  $(top_builddir)/vlc-${VERSION}/activex/ ;
810         cp $(srcdir)/activex/test.html  $(top_builddir)/vlc-${VERSION}/activex/ ;
811         unix2dos $(top_builddir)/vlc-${VERSION}/activex/* ;
812
813         cp $(top_builddir)/activex/*$(LIBEXT) $(top_builddir)/vlc-${VERSION}/activex/ ;
814         $(STRIP) $(top_builddir)/vlc-${VERSION}/activex/*$(LIBEXT);
815 endif
816 # Rebase all those DLLs to speed up loading (need cygwin rebase)
817         if [ -x rebase ]; then \
818                 find $(top_builddir)/vlc-${VERSION} -type f -name '*.dll' -print | rebase -b 0x70000000 -T -; \
819         fi
820
821 package-win32-base-exe:
822 # Create package
823         wine C:/Program\ Files/NSIS/makensis.exe \
824              /DVERSION=${VERSION} $(top_builddir)/vlc-${VERSION}/vlc.win32.nsi
825
826 package-win32-base-exe-cygwin:
827 # Create package
828         C:/Program\ Files/NSIS/makensis.exe \
829              /DVERSION=${VERSION} $(top_builddir)/vlc-${VERSION}/vlc.win32.nsi
830
831 package-win32-base-exe-linux:
832 # Create package
833         makensis -DVERSION=${VERSION} $(top_builddir)/vlc-${VERSION}/vlc.win32.nsi
834
835 package-win32-base-zip:
836 # Create package 
837         zip -r vlc-${VERSION}-win32.zip vlc-${VERSION}
838
839 package-win32-exe: package-win32-base package-win32-base-exe
840 # Clean up
841         rm -Rf $(top_builddir)/vlc-${VERSION}
842
843 package-win32-exe-linux: package-win32-base package-win32-base-exe-linux
844 # Clean up
845         rm -Rf $(top_builddir)/vlc-${VERSION}
846
847 package-win32-zip: package-win32-base package-win32-base-zip
848 # Clean up
849         rm -Rf $(top_builddir)/vlc-${VERSION}
850
851 package-win32: package-win32-base package-win32-base-exe package-win32-base-zip
852 # Clean up
853         rm -Rf $(top_builddir)/vlc-${VERSION}
854
855 package-beos:
856 # Check that tmp isn't in the way
857         @if test -e $(srcdir)/tmp; then \
858           echo "Error: please remove $(srcdir)/tmp, it is in the way"; \
859           false ; \
860         else \
861           echo "OK." ; mkdir $(srcdir)/tmp ; \
862         fi
863
864 # Copy relevant files
865         mkdir -p $(srcdir)/tmp/vlc ;
866         cd $(srcdir) && cp -R vlc-bundle/* AUTHORS COPYING ChangeLog README \
867           THANKS NEWS tmp/vlc/ ;
868
869 # Create debug package
870         xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc ;
871         find $(srcdir)/tmp/vlc -exec mimeset -f {} \; ;
872         mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-${VERSION} ;
873         (cd $(srcdir)/tmp ; zip -9 -r vlc-${VERSION}-BeOS-debug.zip vlc-${VERSION} )
874         mv $(srcdir)/tmp/vlc-${VERSION}-BeOS-debug.zip $(srcdir)/ ;
875         mv $(srcdir)/tmp/vlc-${VERSION} $(srcdir)/tmp/vlc ;
876
877 # Create normal package
878         $(STRIP) --strip-debug --strip-unneeded $(srcdir)/tmp/vlc/vlc ;
879         find $(srcdir)/tmp/vlc -name 'lib*.so' -exec $(STRIP) \
880           --strip-debug --strip-unneeded "{}" \; ;
881         xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc ;
882         find $(srcdir)/tmp/vlc -exec mimeset -f {} \; ;
883         mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-${VERSION} ;
884         (cd $(srcdir)/tmp ; zip -9 -r vlc-${VERSION}-BeOS.zip vlc-${VERSION} )
885         mv $(srcdir)/tmp/vlc-${VERSION}-BeOS.zip $(srcdir)/ ;
886
887 # Clean up
888         rm -Rf $(srcdir)/tmp ;
889
890 package-macosx:
891 # Check that tmp isn't in the way
892         @if test -e "$(top_builddir)/tmp"; then \
893           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
894           false; \
895         else \
896           echo "OK."; mkdir -p "$(top_builddir)/tmp"; \
897         fi
898
899 # Copy relevant files 
900         cp -R "$(top_builddir)/VLC-release.app" "$(top_builddir)/tmp/VLC.app"
901         cd "$(srcdir)" && cp AUTHORS COPYING ChangeLog README README.MacOSX.rtf THANKS NEWS $(top_builddir)/tmp/
902
903 # Create disk image 
904         $(srcdir)/extras/MacOSX/macosx-dmg "vlc-${VERSION}" $(top_builddir)/tmp
905
906 # Clean up
907         rm -Rf $(top_builddir)/tmp
908
909 package-translations:
910         @if test -e "$(srcdir)/vlc-translations-${VERSION}"; then \
911           echo "Error: please remove $(srcdir)/vlc-translations-${VERSION}, it is in the way"; \
912           false; \
913         else \
914           echo "OK."; mkdir -p "$(srcdir)/vlc-translations-${VERSION}"; \
915         fi
916 # Copy translations
917         for i in $(ALL_LINGUAS); do \
918           cp "$(srcdir)/po/$${i}.po" \
919             "$(srcdir)/vlc-translations-${VERSION}/$${i}.po" \
920             || true ; \
921         done
922         cp "$(srcdir)/doc/translations.txt" \
923           "$(srcdir)/vlc-translations-${VERSION}/README.txt"
924
925         echo "#!/bin/sh" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
926         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
927         echo 'if test $$# != 1; then' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
928         echo "  echo \"Usage: convert-po.sh <.po file>\"" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
929         echo "  exit 1" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
930         echo "fi" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
931         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
932         echo 'msgfmt --statistics -o vlc.mo $$1' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
933
934         $(AMTAR) chof - $(srcdir)/vlc-translations-$(VERSION) \
935           | GZIP=$(GZIP_ENV) gzip -c >$(srcdir)/vlc-translations-$(VERSION).tar.gz
936
937 ###############################################################################
938 # Stamp rules
939 ###############################################################################
940 clean: clean-stamp clean-recursive
941 clean-stamp:
942         rm -f stamp-builtin stamp-api
943
944 stamp-builtin: FORCE
945         @for dep in "" `$(VLC_CONFIG) --target builtin`; do \
946           if test "$${dep}" -nt "$(top_builddir)/vlc$(EXEEXT)"; then \
947             rm -f $@; \
948             break; \
949           fi; \
950         done
951         @if test ! -f $@; then printf "" > $@; fi
952
953 stamp-api: Makefile.in $(HEADERS_include) vlc-config vlc-api.pl src/misc/modules_builtin.h.in
954         cd $(srcdir) && cat $(HEADERS_include) | perl ./vlc-api.pl
955         touch stamp-api
956
957 ###############################################################################
958 # Force rule
959 ###############################################################################
960 FORCE: