]> git.sesse.net Git - vlc/blob - Makefile.am
* More compiler warning fixes (const mostly)
[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/bindings because the plugin needs libvlc.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 src modules po . mozilla bindings activex share m4 doc
16 DIST_SUBDIRS = $(SUBDIRS)  ipkg
17
18 EXTRA_DIST = \
19         HACKING \
20         INSTALL.win32 \
21         INSTALL.wince \
22         vlc.exe.manifest \
23         MAINTAINERS \
24         README.MacOSX.rtf \
25         bootstrap \
26         toolbox \
27         vlc-api.pl \
28         vlc-config.in.in \
29         vlc.fedora.spec \
30         vlc.mandriva.spec \
31         vlc.altlinux.spec \
32         vlc.win32.nsi.in \
33         $(NULL)
34
35 BUILT_SOURCES_distclean = vlc-config compile vlc.win32.nsi
36 BUILT_SOURCES_clean = macosx-sdk
37
38 BUILT_SOURCES = $(BUILT_SOURCES_distclean) $(BUILT_SOURCES_clean)
39
40 SUFFIXES = 
41
42 DISTCHECK_CONFIGURE_FLAGS = --disable-dvd --disable-mad --disable-libmpeg2 \
43         --disable-ffmpeg --disable-faad --disable-wxwidgets --disable-skins2
44
45 # Tell aclocal to use -I m4. Wonder if it really works.
46 ACLOCAL_AMFLAGS = -I m4
47
48 ###############################################################################
49 # MacOS X project
50 ###############################################################################
51
52 EXTRA_DIST += \
53         extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib \
54         extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib \
55         extras/MacOSX/Resources/English.lproj/MainMenu.nib/keyedobjects.nib \
56         extras/MacOSX/Resources/English.lproj/About.nib/classes.nib \
57         extras/MacOSX/Resources/English.lproj/About.nib/info.nib \
58         extras/MacOSX/Resources/English.lproj/About.nib/keyedobjects.nib \
59         extras/MacOSX/Resources/English.lproj/Open.nib/classes.nib \
60         extras/MacOSX/Resources/English.lproj/Open.nib/info.nib \
61         extras/MacOSX/Resources/English.lproj/Open.nib/keyedobjects.nib \
62         extras/MacOSX/Resources/English.lproj/Preferences.nib/classes.nib \
63         extras/MacOSX/Resources/English.lproj/Preferences.nib/info.nib \
64         extras/MacOSX/Resources/English.lproj/Preferences.nib/keyedobjects.nib \
65         extras/MacOSX/Resources/English.lproj/Wizard.nib/classes.nib \
66         extras/MacOSX/Resources/English.lproj/Wizard.nib/info.nib \
67         extras/MacOSX/Resources/English.lproj/Wizard.nib/keyedobjects.nib \
68         extras/MacOSX/Resources/English.lproj/Bookmarks.nib/classes.nib \
69         extras/MacOSX/Resources/English.lproj/Bookmarks.nib/info.nib \
70         extras/MacOSX/Resources/English.lproj/Bookmarks.nib/keyedobjects.nib \
71         extras/MacOSX/Resources/English.lproj/Extended.nib/classes.nib \
72         extras/MacOSX/Resources/English.lproj/Extended.nib/info.nib \
73         extras/MacOSX/Resources/English.lproj/Extended.nib/keyedobjects.nib \
74         extras/MacOSX/Resources/English.lproj/SFilters.nib/classes.nib \
75         extras/MacOSX/Resources/English.lproj/SFilters.nib/info.nib \
76         extras/MacOSX/Resources/English.lproj/SFilters.nib/keyedobjects.nib \
77         extras/MacOSX/Resources/English.lproj/Update.nib/classes.nib \
78         extras/MacOSX/Resources/English.lproj/Update.nib/info.nib \
79         extras/MacOSX/Resources/English.lproj/Update.nib/keyedobjects.nib \
80         extras/MacOSX/Resources/English.lproj/Interaction.nib/classes.nib \
81         extras/MacOSX/Resources/English.lproj/Interaction.nib/info.nib \
82         extras/MacOSX/Resources/English.lproj/Interaction.nib/keyedobjects.nib \
83         extras/MacOSX/Resources/English.lproj/InteractionErrorPanel.nib/classes.nib \
84         extras/MacOSX/Resources/English.lproj/InteractionErrorPanel.nib/info.nib \
85         extras/MacOSX/Resources/English.lproj/InteractionErrorPanel.nib/keyedobjects.nib \
86         extras/MacOSX/Resources/English.lproj/InfoPlist.strings \
87         extras/MacOSX/Resources/a52.icns \
88         extras/MacOSX/Resources/aac.icns \
89         extras/MacOSX/Resources/asf.icns \
90         extras/MacOSX/Resources/asx.icns \
91         extras/MacOSX/Resources/avi.icns \
92         extras/MacOSX/Resources/bin.icns \
93         extras/MacOSX/Resources/cue.icns \
94         extras/MacOSX/Resources/dat.icns \
95         extras/MacOSX/Resources/divx.icns \
96         extras/MacOSX/Resources/dv.icns \
97         extras/MacOSX/Resources/generic.icns \
98         extras/MacOSX/Resources/m3u.icns \
99         extras/MacOSX/Resources/mov.icns \
100         extras/MacOSX/Resources/mp3.icns \
101         extras/MacOSX/Resources/mp4.icns \
102         extras/MacOSX/Resources/mpeg.icns \
103         extras/MacOSX/Resources/mpeg1.icns \
104         extras/MacOSX/Resources/mpeg2.icns \
105         extras/MacOSX/Resources/mpeg4.icns \
106         extras/MacOSX/Resources/mpg.icns \
107         extras/MacOSX/Resources/ogg.icns \
108         extras/MacOSX/Resources/ogm.icns \
109         extras/MacOSX/Resources/pls.icns \
110         extras/MacOSX/Resources/srt.icns \
111         extras/MacOSX/Resources/sub.icns \
112         extras/MacOSX/Resources/vlc.icns \
113         extras/MacOSX/Resources/vob.icns \
114         extras/MacOSX/Resources/wma.icns \
115         extras/MacOSX/Resources/wmv.icns \
116         extras/MacOSX/Resources/pause.png \
117         extras/MacOSX/Resources/pause_blue.png \
118         extras/MacOSX/Resources/play.png \
119         extras/MacOSX/Resources/play_blue.png \
120         extras/MacOSX/Resources/stop.png \
121         extras/MacOSX/Resources/stop_blue.png \
122         extras/MacOSX/Resources/display.png \
123         extras/MacOSX/Resources/display_slider.png \
124         extras/MacOSX/Resources/display_track.png \
125         extras/MacOSX/Resources/equalizerdrawer_active.png \
126         extras/MacOSX/Resources/equalizerdrawer_blue.png \
127         extras/MacOSX/Resources/fullscreen_active.png \
128         extras/MacOSX/Resources/fullscreen_blue.png \
129         extras/MacOSX/Resources/next_active.png \
130         extras/MacOSX/Resources/next_blue.png \
131         extras/MacOSX/Resources/playlistdrawer_active.png \
132         extras/MacOSX/Resources/playlistdrawer_blue.png \
133         extras/MacOSX/Resources/previous_active.png \
134         extras/MacOSX/Resources/previous_blue.png \
135         extras/MacOSX/Resources/skip_forward_active.png \
136         extras/MacOSX/Resources/skip_forward_blue.png \
137         extras/MacOSX/Resources/skip_previous_active.png \
138         extras/MacOSX/Resources/skip_previous_blue.png \
139         extras/MacOSX/Resources/volume_high.png \
140         extras/MacOSX/Resources/volume_low.png \
141         extras/MacOSX/Resources/volumeslider_blue.png \
142         extras/MacOSX/Resources/volumeslider_normal.png \
143         extras/MacOSX/Resources/volumetrack.png \
144         extras/MacOSX/Resources/about_bg.png \
145         extras/MacOSX/Resources/skip_forward_active_embedded.png \
146         extras/MacOSX/Resources/play_embedded.png \
147         extras/MacOSX/Resources/pause_embedded.png \
148         extras/MacOSX/Resources/skip_previous_active_embedded.png \
149         extras/MacOSX/Resources/pause_embedded_blue.png \
150         extras/MacOSX/Resources/play_embedded_blue.png \
151         extras/MacOSX/Resources/skip_forward_embedded_blue.png \
152         extras/MacOSX/Resources/skip_previous_embedded_blue.png \
153         extras/MacOSX/Resources/vlc.scriptSuite \
154         extras/MacOSX/Resources/vlc.scriptTerminology \
155         extras/MacOSX/Resources/README \
156         extras/MacOSX/Resources/add_embedded.png \
157         extras/MacOSX/Resources/add_embedded_blue.png \
158         extras/MacOSX/Resources/repeat_embedded.png \
159         extras/MacOSX/Resources/repeat_embedded_blue.png \
160         extras/MacOSX/Resources/repeat_single_embedded_blue.png \
161         extras/MacOSX/Resources/shuffle_embedded.png \
162         extras/MacOSX/Resources/shuffle_embedded_blue.png \
163         extras/MacOSX/Resources/fs_volume_slider_knob_highlight.png \
164         extras/MacOSX/Resources/fs_volume_slider_knob.png \
165         extras/MacOSX/Resources/fs_volume_slider_bar.png \
166         extras/MacOSX/Resources/fs_volume_mute_highlight.png \
167         extras/MacOSX/Resources/fs_volume_mute.png \
168         extras/MacOSX/Resources/fs_volume_max_highlight.png \
169         extras/MacOSX/Resources/fs_volume_max.png \
170         extras/MacOSX/Resources/fs_time_slider_knob_highlight.png \
171         extras/MacOSX/Resources/fs_time_slider_knob.png \
172         extras/MacOSX/Resources/fs_time_slider.png \
173         extras/MacOSX/Resources/fs_stop_highlight.png \
174         extras/MacOSX/Resources/fs_stop.png \
175         extras/MacOSX/Resources/fs_skip_previous_highlight.png \
176         extras/MacOSX/Resources/fs_skip_previous.png \
177         extras/MacOSX/Resources/fs_skip_next_highlight.png \
178         extras/MacOSX/Resources/fs_skip_next.png \
179         extras/MacOSX/Resources/fs_rewind_highlight.png \
180         extras/MacOSX/Resources/fs_rewind.png \
181         extras/MacOSX/Resources/fs_play_highlight.png \
182         extras/MacOSX/Resources/fs_play.png \
183         extras/MacOSX/Resources/fs_pause_highlight.png \
184         extras/MacOSX/Resources/fs_pause.png \
185         extras/MacOSX/Resources/fs_forward_highlight.png \
186         extras/MacOSX/Resources/fs_forward.png \
187         extras/MacOSX/Resources/fs_exit_fullscreen_highlight.png \
188         extras/MacOSX/Resources/fs_exit_fullscreen.png \
189         extras/MacOSX/Resources/fs_background.png \
190         extras/MacOSX/fullscreen_panel.svg \
191         extras/MacOSX/vlc.pbproj/project.pbxproj \
192         extras/MacOSX/Delete_Preferences.app/Contents/Info.plist \
193         extras/MacOSX/Delete_Preferences.app/Contents/PkgInfo \
194         extras/MacOSX/Delete_Preferences.app/Contents/MacOS/applet \
195         extras/MacOSX/Delete_Preferences.app/Contents/Resources/description.rtfd/TXT.rtf \
196         extras/MacOSX/Delete_Preferences.app/Contents/Resources/applet.icns \
197         extras/MacOSX/Delete_Preferences.app/Contents/Resources/applet.rsrc \
198         extras/MacOSX/Delete_Preferences.app/Contents/Resources/Scripts/main.scpt \
199         extras/MacOSX/plugin/Info.plist \
200         extras/MacOSX/plugin/InstallerInfo.plist \
201         extras/MacOSX/plugin/InstallerDescription.plist \
202         extras/MacOSX/plugin/pbdevelopment.plist \
203         extras/MacOSX/plugin/English.lproj/InfoPlist.strings \
204         $(NULL)
205
206 ###############################################################################
207 # Various utilities ( editor syntax files, D-Bus controller ... )
208 ##############################################################################
209 EXTRA_DIST += \
210         extras/Makefile \
211         extras/zsh.cpp \
212         extras/emacs.init \
213         extras/vlc.vim \
214         extras/make.pl \
215         extras/valgrind.suppressions \
216         extras/m4/autoconf260.m4 \
217         extras/dbus-vlc.py \
218         extras/dbus-vlc.glade \
219         $(NULL)
220
221 ###############################################################################
222 # MS Visual Studio and eMbedded Visual Studio projects
223 ###############################################################################
224
225 EXTRA_DIST += \
226         msvc/vlc.dsw \
227         msvc/libvlc.dsp.in \
228         msvc/plugins.dsp.in \
229         msvc/vlc.dsp.in \
230         msvc/config.h.in \
231         msvc/modules_builtin_msvc.h \
232         evc/vlc.vcw \
233         evc/libvlc.vcp.in \
234         evc/vlc.vcp.in \
235         evc/plugins.vcp.in \
236         evc/errno.h \
237         evc/config.h.in \
238         evc/modules_builtin_evc.h \
239         $(NULL)
240
241 dist-hook:
242         cd $(distdir) && srcdir=. $(SHELL) ./toolbox --update-vc
243         distdir=$(distdir) srcdir=$(srcdir) $(SHELL) $(srcdir)/toolbox --dist-contrib
244
245 ###############################################################################
246 # Building libvlc
247 ###############################################################################
248
249 bin_SCRIPTS = vlc-config
250 vlc-config: $(top_builddir)/config.status $(top_builddir)/vlc-config.in
251         $(SHELL) ./config.status --file=$@
252         chmod 0755 $@
253         touch $@
254
255 vlc-config.in: vlc-config.in.in
256         ./config.status --recheck
257         touch $@
258
259 CLEANFILES = $(BUILT_SOURCES_clean) stamp-builtin
260 DISTCLEANFILES = $(BUILT_SOURCES_distclean) vlc-config.in compile
261
262 ###############################################################################
263 # Building vlc
264 ###############################################################################
265
266 bin_PROGRAMS = vlc
267
268 vlc_SOURCES = src/vlc.c
269 # Ugly kludge so that automake defines $(CXXLINK)
270 nodist_EXTRA_vlc_SOURCES = extras/zsh.cpp src/misc/darwin_specific.m
271
272 # Work around a bug in the arm-wince-pe linker
273 if HAVE_WINCE
274 vlc_WORKAROUNDLDFLAGS = $(LIBVLC)
275 endif
276
277 # We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an
278 # old automake-1.5 bug (automake/279).
279 DEPENDENCIES_vlc = src/$(LIB_libvlc) $(DATA_win32_rc)
280
281 vlc_LDADD = $(DATA_win32_rc) $(LIBVLC)
282
283 vlc_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
284 if USE_LIBTOOL
285 LIB_libvlc = libvlc.la
286 LIBVLC = src/$(LIB_libvlc)
287 vlc_LDFLAGS =
288 else
289 if HAVE_WIN32
290 vlc_LDFLAGS = `$(VLC_CONFIG) --libs vlc` -Wl,-rpath $(libdir) -L$(top_builddir)/src -lvlc
291 LIB_libvlc = libvlc.dll.a
292 LIBVLC =
293 else
294 vlc_LDFLAGS = $(vlc_WORKAROUNDLFDLAGS) `$(VLC_CONFIG) --libs vlc builtin`
295 LIB_libvlc = libvlc.a
296 LIBVLC = src/$(LIB_libvlc)
297 DEPENDENCIES_vlc += stamp-builtin
298 endif
299 vlc_LDADD += $(INCLUDED_LIBINTL)
300 endif
301
302 # Shortcut for developpers to rebuild the core (libvlc + vlc)
303 # Don't use it if you don't know what it is about.
304 # Don't complain if it doesn't work. -- Courmisch
305 libvlc:
306         cd src && $(MAKE) $(AM_MAKEFLAGS) $(LIB_libvlc)
307
308 core: libvlc
309         $(MAKE) $(AM_MAKEFLAGS) vlc$(EXEEXT)
310
311 .PHONY: libvlc core
312
313 src/$(LIB_libvlc): libvlc
314
315 vlc$(EXEEXT): $(vlc_OBJECTS) $(DEPENDENCIES_vlc)
316         @rm -f vlc$(EXEEXT)
317         @case `$(VLC_CONFIG) --linkage vlc builtin` in \
318           c++) cmd="$(CXXLINK)" ;; \
319           objc) cmd="$(OBJCLINK)" ;; \
320           c|*) cmd="$(LINK)" ;; \
321         esac ; \
322         cmd="$$cmd $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS)" ; \
323         echo $$cmd ; \
324         eval $$cmd
325
326 if HAVE_BEOS
327 noinst_DATA = vlc-bundle
328 vlc-bundle: vlc
329         rm -Rf $(top_builddir)/vlc-bundle ; mkdir -p $(top_builddir)/vlc-bundle
330         cp $(top_builddir)/vlc $(top_builddir)/vlc-bundle/
331         xres -o $(top_builddir)/vlc-bundle/vlc $(srcdir)/share/vlc_beos.rsrc
332         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
333           if test -n "$$i" ; then \
334             mkdir -p $(top_builddir)/vlc-bundle/plugins ; \
335             cp "$$i$(LIBEXT)" $(top_builddir)/vlc-bundle/plugins/ ; \
336           fi ; \
337         done
338         if test -d $(top_builddir)/extras/contrib/vlc-lib ; then \
339           mkdir -p $(top_builddir)/vlc-bundle/lib ; \
340           for i in $(top_builddir)/extras/contrib/vlc-lib/*.so ; do \
341             cp $$i $(top_builddir)/vlc-bundle/lib/ ; \
342           done ; \
343         fi
344         for i in $(ALL_LINGUAS); do \
345           mkdir -p "$(top_builddir)/vlc-bundle/locale/$$i/LC_MESSAGES" ; \
346           cp "$(top_builddir)/po/$$i.gmo" \
347             "$(top_builddir)/vlc-bundle/locale/$$i/LC_MESSAGES/vlc.mo" || true ; \
348         done
349         find $(top_builddir)/vlc-bundle -type f -exec mimeset -f "{}" \;
350 endif
351
352 # Install the symlinks
353 install-exec-local: install-binPROGRAMS
354         for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
355           rm -f "$(DESTDIR)$(bindir)/$$i" && \
356           ln -sf vlc "$(DESTDIR)$(bindir)/$$i" ; \
357         fi ; done
358
359 # the opposite of install-{data,exec}-local
360 uninstall-local:
361         for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
362           rm -f "$(DESTDIR)$(bindir)/$$i" ; \
363         fi ; done
364
365 if HAVE_DARWIN
366 # Create the MacOS X app
367 vlc_app_DATA = VLC.app
368 vlc_appdir = $(bindir)
369 # VLC-release.app is the old VLC.app target
370 VLC-release.app: vlc
371         @if test -e "$(top_builddir)/tmp"; then \
372           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
373           false; \
374         else \
375           echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
376         fi
377         rm -Rf $(top_builddir)/VLC-release.app
378         cp -R $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
379         for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
380           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
381         done
382         mkdir -p $(top_builddir)/tmp/modules/audio_output
383         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
384         for i in \
385             AppleRemote.h \
386             AppleRemote.m \
387             about.h \
388             about.m \
389             applescript.h \
390             applescript.m \
391             controls.h \
392             controls.m \
393             equalizer.h \
394             equalizer.m \
395             intf.h \
396             intf.m \
397             macosx.m \
398             misc.h \
399             misc.m \
400             open.h \
401             open.m \
402             output.h \
403             output.m \
404             playlist.h \
405             playlist.m \
406             playlistinfo.h \
407             playlistinfo.m \
408             prefs_widgets.h \
409             prefs_widgets.m \
410             prefs.h \
411             prefs.m \
412             vout.h \
413             voutqt.m \
414             voutgl.m \
415             wizard.h \
416             wizard.m \
417             extended.h \
418             extended.m \
419             bookmarks.h \
420             bookmarks.m \
421             sfilters.h \
422             sfilters.m \
423             update.h \
424             update.m \
425             interaction.h \
426             interaction.m \
427             embeddedwindow.h \
428             embeddedwindow.m \
429             fspanel.h \
430             fspanel.m \
431             vout.m; do \
432           cp "$(srcdir)/modules/gui/macosx/$$i" \
433              $(top_builddir)/tmp/modules/gui/macosx; \
434         done
435         case $(host_os) in \
436           *darwin6*) cd $(top_builddir)/tmp/extras/MacOSX && pbxbuild -target vlc | grep -v '^\([ \t]\|$$\)' && \
437             cd ../../../ && \
438             cp -R $(top_builddir)/tmp/extras/MacOSX/build/VLC.bundle \
439                   $(top_builddir)/VLC-release.app;; \
440           *darwin7*) cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)' && \
441             cd ../../../ && \
442             cp -R $(top_builddir)/tmp/extras/MacOSX/build/VLC.bundle \
443                   $(top_builddir)/VLC-release.app;; \
444           *darwin8*) cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)' && \
445             cd ../../../ && \
446             cp -R $(top_builddir)/tmp/extras/MacOSX/build/Default/VLC.bundle \
447                   $(top_builddir)/VLC-release.app;; \
448         esac
449         rm -Rf $(top_builddir)/tmp
450         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS
451         $(INSTALL) $(top_builddir)/vlc \
452                    $(top_builddir)/VLC-release.app/Contents/MacOS/VLC
453         ln -sf ./VLC $(top_builddir)/VLC-release.app/Contents/MacOS/clivlc
454         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/modules
455         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
456           if test -n "$$i" ; \
457             then $(INSTALL) "$$i$(LIBEXT)" \
458                            "$(top_builddir)/VLC-release.app/Contents/MacOS/modules" ; \
459           fi ; done
460         if test -d $(srcdir)/extras/contrib/vlc-lib; then \
461           mkdir -p $(top_builddir)/VLC-release.app/Contents/MacOS/lib ; \
462           for i in $(srcdir)/extras/contrib/vlc-lib/*.dylib ; do \
463             $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/lib/`basename $${i}` ; \
464           done ; \
465         fi
466         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs
467         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js
468         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old
469         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/admin
470         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/vlm
471         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/images
472         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests
473         for i in $(srcdir)/share/http/*.* ; do \
474           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/`basename $${i}` ; \
475         done ; \
476         for i in $(srcdir)/share/http/dialogs/* ; do \
477           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs/`basename $${i}` ; \
478         done ; \
479         for i in $(srcdir)/share/http/js/*.* ; do \
480           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js/`basename $${i}` ; \
481         done ; \
482         for i in $(srcdir)/share/http/old/*.* ; do \
483           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/`basename $${i}` ; \
484         done ; \
485         for i in $(srcdir)/share/http/old/admin/*.* ; do \
486           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/admin/`basename $${i}` ; \
487         done ; \
488         for i in $(srcdir)/share/http/old/vlm/*.* ; do \
489           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/vlm/`basename $${i}` ; \
490         done ; \
491         for i in $(srcdir)/share/http/images/*.* ; do \
492           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/images/`basename $${i}` ; \
493         done ; \
494         for i in $(srcdir)/share/http/requests/*.* ; do \
495           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests/`basename $${i}` ; \
496         done ; \
497         $(INSTALL) -m 644 $(srcdir)/share/http/requests/readme $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests/readme.txt
498         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/locale
499         for i in $(ALL_LINGUAS); do \
500           mkdir -p $(top_builddir)/VLC-release.app/Contents/MacOS/locale/$${i}/LC_MESSAGES ; \
501           cp $(srcdir)/po/$${i}.gmo $(top_builddir)/VLC-release.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
502           mkdir -p $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
503           ln -sf ../English.lproj/InfoPlist.strings \
504               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
505           ln -sf ../English.lproj/MainMenu.nib \
506               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
507           ln -sf ../English.lproj/vlc.scriptTerminology \
508               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
509         done
510         printf "APPLVLC#" >| $(top_builddir)/VLC-release.app/Contents/PkgInfo
511
512 VLC.app: vlc
513         @if test -e "$(top_builddir)/tmp"; then \
514           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
515           false; \
516         else \
517           echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
518         fi
519         rm -Rf $(top_builddir)/VLC.app
520         cp -R $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
521         for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
522           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
523         done
524         mkdir -p $(top_builddir)/tmp/modules/audio_output
525         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
526         for i in \
527             AppleRemote.h \
528             AppleRemote.m \
529             about.h \
530             about.m \
531             applescript.h \
532             applescript.m \
533             controls.h \
534             controls.m \
535             equalizer.h \
536             equalizer.m \
537             intf.h \
538             intf.m \
539             macosx.m \
540             misc.h \
541             misc.m \
542             open.h \
543             open.m \
544             output.h \
545             output.m \
546             playlist.h \
547             playlist.m \
548             playlistinfo.h \
549             playlistinfo.m \
550             prefs_widgets.h \
551             prefs_widgets.m \
552             prefs.h \
553             prefs.m \
554             vout.h \
555             voutqt.m \
556             voutgl.m \
557             wizard.h \
558             wizard.m \
559             extended.h \
560             extended.m \
561             bookmarks.h \
562             bookmarks.m \
563             sfilters.h \
564             sfilters.m \
565             update.h \
566             update.m \
567             interaction.h \
568             interaction.m \
569             embeddedwindow.h \
570             embeddedwindow.m \
571             fspanel.h \
572             fspanel.m \
573             vout.m; do \
574           cp "$(srcdir)/modules/gui/macosx/$$i" \
575              $(top_builddir)/tmp/modules/gui/macosx; \
576         done
577         case $(host_os) in \
578           *darwin6*) cd $(top_builddir)/tmp/extras/MacOSX && pbxbuild -target vlc | grep -v '^\([ \t]\|$$\)'&& \
579             cd ../../../ && \
580             cp -R $(top_builddir)/tmp/extras/MacOSX/build/VLC.bundle \
581                   $(top_builddir)/VLC.app;; \
582           *darwin7*) cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)'&& \
583             cd ../../../ && \
584             cp -R $(top_builddir)/tmp/extras/MacOSX/build/VLC.bundle \
585                   $(top_builddir)/VLC.app;; \
586           *darwin8*) cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)' && \
587             cd ../../../ && \
588             cp -R $(top_builddir)/tmp/extras/MacOSX/build/Default/VLC.bundle \
589                   $(top_builddir)/VLC.app;; \
590         esac
591         rm -Rf $(top_builddir)/tmp
592         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS
593         $(INSTALL) $(top_builddir)/vlc \
594                    $(top_builddir)/VLC.app/Contents/MacOS/VLC
595         ln -sf ./VLC $(top_builddir)/VLC.app/Contents/MacOS/clivlc
596         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/modules
597         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
598           if test -n "$$i" ; \
599             then ln -sfn "`pwd`/$$i$(LIBEXT)" \
600                            "$(top_builddir)/VLC.app/Contents/MacOS/modules" ; \
601           fi ; done
602         if test -d $(srcdir)/extras/contrib/vlc-lib; then \
603           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/lib ; \
604           for i in $(srcdir)/extras/contrib/vlc-lib/*.dylib ; do \
605             ln -sfn `pwd`/$${i} $(top_builddir)/VLC.app/Contents/MacOS/lib/`basename $${i}` ; \
606           done ; \
607         fi
608         ln -sfn `pwd`/share $(top_builddir)/VLC.app/Contents/MacOS/
609         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/locale
610         for i in $(ALL_LINGUAS); do \
611           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES ; \
612           ln -sfn `pwd`/po/$${i}.gmo $(top_builddir)/VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
613           mkdir -p $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
614           ln -sf ../English.lproj/InfoPlist.strings \
615               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
616           ln -sf ../English.lproj/MainMenu.nib \
617               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
618         done
619         printf "APPLVLC#" >| $(top_builddir)/VLC.app/Contents/PkgInfo
620 endif
621
622 if HAVE_WIN32
623 DATA_win32_rc = $(noinst_share_vlc_win32_rc_DATA)
624 noinst_share_vlc_win32_rc_DATA = share/vlc_win32_rc.$(OBJEXT)
625 noinst_share_vlc_win32_rcdir = $(libdir)
626 share/vlc_win32_rc.$(OBJEXT): share/vlc_win32_rc.rc
627         $(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 $@
628 endif
629
630
631 ###############################################################################
632 # Building specific source packages
633 ###############################################################################
634
635 dist-woody: distdir
636         $(remove_distdir_woody)
637         mv $(distdir) $(PACKAGE)-woody-$(VERSION)
638         $(srcdir)/toolbox --make-woody $(PACKAGE)-woody-$(VERSION)
639         $(AMTAR) chof - $(PACKAGE)-woody-$(VERSION) \
640           | GZIP=$(GZIP_ENV) gzip -c >$(PACKAGE)-woody-$(VERSION).tar.gz
641         $(remove_distdir_woody)
642
643 remove_distdir_woody = \
644   { test ! -d $(PACKAGE)-woody-$(VERSION) \
645     || { find $(PACKAGE)-woody-$(VERSION) -type d ! -perm -200 \
646            -exec chmod u+w {} ';' \
647          && rm -fr $(PACKAGE)-woody-$(VERSION); }; }
648
649 ###############################################################################
650 # Building architecture-specific binary packages
651 ###############################################################################
652
653 # XXX: this rule is probably only useful to you if you have exactly
654 # the same setup as me. Contact sam@zoy.org if you need to use it.
655 #
656
657 package-win-common:
658 # Check that tmp isn't in the way
659         @if test -e "$(top_builddir)/vlc-${VERSION}"; then \
660           echo "Error: please remove $(top_builddir)/vlc-${VERSION}, it is in the way"; \
661           false; \
662         else \
663           echo "OK."; mkdir -p "$(top_builddir)/vlc-${VERSION}"; \
664         fi
665
666 # Copy relevant files
667         cp "$(top_builddir)/vlc$(EXEEXT)" "$(top_builddir)/vlc-${VERSION}/"
668         cp "$(top_srcdir)/vlc.exe.manifest" "$(top_builddir)/vlc-${VERSION}/"
669         cp "src/libvlc$(LIBEXT)" "vlc-${VERSION}/"
670
671         for file in AUTHORS MAINTAINERS THANKS NEWS COPYING README ; \
672           do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(top_builddir)/vlc-${VERSION}/$${file}.txt" ; \
673           unix2dos "$(top_builddir)/vlc-${VERSION}/$${file}.txt" ; done
674
675         mkdir $(top_builddir)/vlc-${VERSION}/locale
676         for i in $(ALL_LINGUAS); do \
677           mkdir -p "$(top_builddir)/vlc-${VERSION}/locale/$${i}/LC_MESSAGES" ; \
678           cp "$(srcdir)/po/$${i}.gmo" \
679             "$(top_builddir)/vlc-${VERSION}/locale/$${i}/LC_MESSAGES/vlc.mo" \
680             || true ; \
681         done
682
683         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/images"
684         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/requests"
685         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/js"
686         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/dialogs"
687         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/old"
688         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/old/vlm"
689         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/old/admin"
690         cp $(srcdir)/share/http/*.html $(top_builddir)/vlc-${VERSION}/http/ ;
691         unix2dos $(top_builddir)/vlc-${VERSION}/http/*.html ;
692         cp $(srcdir)/share/http/*.css $(top_builddir)/vlc-${VERSION}/http/ ;
693         unix2dos $(top_builddir)/vlc-${VERSION}/http/*.css ;
694         cp $(srcdir)/share/http/js/*.js $(top_builddir)/vlc-${VERSION}/http/js/ ;
695         unix2dos $(top_builddir)/vlc-${VERSION}/http/js/*.js ;
696         cp $(srcdir)/share/http/dialogs/* $(top_builddir)/vlc-${VERSION}/http/dialogs/ ;
697         unix2dos $(top_builddir)/vlc-${VERSION}/http/dialogs/* ;
698         cp $(srcdir)/share/http/*.ico $(top_builddir)/vlc-${VERSION}/http/ ;
699         cp $(srcdir)/share/http/images/*.png $(top_builddir)/vlc-${VERSION}/http/images/
700         cp $(srcdir)/share/http/requests/*.xml $(top_builddir)/vlc-${VERSION}/http/requests/ ;
701         unix2dos $(top_builddir)/vlc-${VERSION}/http/requests/*.xml ;
702         cp $(srcdir)/share/http/requests/readme $(top_builddir)/vlc-${VERSION}/http/requests/readme.txt ;
703         unix2dos $(top_builddir)/vlc-${VERSION}/http/requests/readme.txt ;
704
705         cp $(srcdir)/share/http/old/*.html $(top_builddir)/vlc-${VERSION}/http/old/ ;
706         unix2dos $(top_builddir)/vlc-${VERSION}/http/old/*.html ;
707         cp $(srcdir)/share/http/old/*.css $(top_builddir)/vlc-${VERSION}/http/old/ ;
708         cp $(srcdir)/share/http/old/*.png $(top_builddir)/vlc-${VERSION}/http/old/ ;
709         cp $(srcdir)/share/http/old/vlm/*.html $(top_builddir)/vlc-${VERSION}/http/old/vlm/ ;
710         unix2dos $(top_builddir)/vlc-${VERSION}/http/old/vlm/*.html ;
711         cp $(srcdir)/share/http/old/admin/*.html $(top_builddir)/vlc-${VERSION}/http/old/admin/ ;
712         unix2dos $(top_builddir)/vlc-${VERSION}/http/old/admin/*.html ;
713
714         cp $(srcdir)/share/vlc48x48.ico $(top_builddir)/vlc-${VERSION}/ ;
715
716 if BUILD_MOZILLA
717         mkdir -p "$(top_builddir)/vlc-${VERSION}/mozilla"
718         cp $(top_builddir)/mozilla/*$(LIBEXT) $(top_builddir)/vlc-${VERSION}/mozilla/ ;
719 endif
720
721 if BUILD_ACTIVEX
722         mkdir -p "$(top_builddir)/vlc-${VERSION}/activex"
723         cp $(srcdir)/activex/README.TXT  $(top_builddir)/vlc-${VERSION}/activex/ ;
724         cp $(srcdir)/activex/test.html  $(top_builddir)/vlc-${VERSION}/activex/ ;
725         unix2dos $(top_builddir)/vlc-${VERSION}/activex/* ;
726
727         cp $(top_builddir)/activex/*$(LIBEXT) $(top_builddir)/vlc-${VERSION}/activex/ ;
728 endif
729 # Rebase all those DLLs to speed up loading (need cygwin rebase)
730         if rebase -b 0x42 /dev/null >/dev/null 2>&1; then \
731                 find $(top_builddir)/vlc-${VERSION} -type f -name '*.dll' -print | rebase -b 0x70000000 -T -; \
732         fi
733
734 package-win-common-strip:
735         $(STRIP) "$(top_builddir)/vlc-${VERSION}/vlc$(EXEEXT)"
736         $(STRIP) "vlc-${VERSION}/libvlc$(LIBEXT)"
737 if BUILD_MOZILLA
738         $(STRIP) $(top_builddir)/vlc-${VERSION}/mozilla/*$(LIBEXT);
739 endif
740 if BUILD_ACTIVEX
741         $(STRIP) $(top_builddir)/vlc-${VERSION}/activex/*$(LIBEXT);
742 endif
743
744 package-win32-base-debug: package-win-common
745 # Copy relevant files
746         cp "$(top_builddir)/vlc.win32.nsi" "$(top_builddir)/vlc-${VERSION}/"
747
748         mkdir -p "$(top_builddir)/vlc-${VERSION}/plugins"
749         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
750           if test -n "$$i" ; then \
751             $(INSTALL) "$(top_builddir)/$$i$(LIBEXT)" \
752             "$(top_builddir)/vlc-${VERSION}/plugins/" ; \
753           fi ; done
754
755         mkdir -p $(top_builddir)/vlc-${VERSION}/skins/fonts
756         for i in $(srcdir)/share/skins2/fonts/*.*; do \
757           cp $$i $(top_builddir)/vlc-${VERSION}/skins/fonts/ || true ; \
758         done
759         for i in $(srcdir)/share/skins2/*.*; do \
760           cp $$i $(top_builddir)/vlc-${VERSION}/skins/ || true ; \
761         done
762
763         mkdir -p "$(top_builddir)/vlc-${VERSION}/osdmenu"
764         cp $(srcdir)/share/osdmenu/*.* "$(top_builddir)/vlc-${VERSION}/osdmenu"
765         for dir in dvd dvd/selected dvd/unselect dvd/selection dvd/volume default default/selected default/selection default/volume;do \
766                 mkdir -p "$(top_builddir)/vlc-${VERSION}/osdmenu/$$dir"; \
767                 for file in $(srcdir)/share/osdmenu/$${dir}/*.*;do \
768                          cp $$file "$(top_builddir)/vlc-${VERSION}/osdmenu/$$dir" || true; \
769                 done; \
770         done
771         unix2dos $(top_builddir)/vlc-${VERSION}/osdmenu/*.cfg;
772         sed -i 's%share/osdmenu%osdmenu%g' $(top_builddir)/vlc-${VERSION}/osdmenu/*.cfg
773         sed -i 's%/%\\%g' $(top_builddir)/vlc-${VERSION}/osdmenu/*.cfg 
774
775
776 package-win32-base: package-win32-base-debug package-win-common-strip
777         for i in "" $(top_builddir)/vlc-${VERSION}/plugins/*$(LIBEXT) ; \
778           do if test -n "$$i" ; then $(STRIP) "$$i" ; fi ; done
779
780 package-win32-base-exe: package-win32-base
781 # Create package
782         if makensis -VERSION >/dev/null 2>&1; then \
783             MAKENSIS="makensis -DVERSION=${VERSION}"; \
784         elif [ -x "/cygdrive/c/Program Files/NSIS/makensis" ]; then \
785             MAKENSIS="/cygdrive/c/Program\ Files/NSIS/makensis /DVERSION=${VERSION}"; \
786         elif wine --version >dev/null 2>&1; then \
787             MAKENSIS="wine C:/Program\ Files/NSIS/makensis.exe /DVERSION=${VERSION}"; \
788         else \
789             echo 'Error: cannot locate makensis tool'; exit 1; \
790         fi; \
791         eval "$$MAKENSIS $(top_builddir)/vlc-${VERSION}/vlc.win32.nsi"
792
793 package-win32-base-exe-cygwin: package-win32-base-exe
794 # Create package
795
796 package-win32-base-exe-linux:
797 # Create package
798         makensis -DVERSION=${VERSION} $(top_builddir)/vlc-${VERSION}/vlc.win32.nsi
799
800 package-win32-base-zip: package-win32-base
801 # Create package 
802         zip -r -9 vlc-${VERSION}-win32.zip vlc-${VERSION}
803
804 package-win32-base-7zip: package-win32-base
805 # Create package 
806         7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on vlc-${VERSION}-win32.7z vlc-${VERSION}
807
808 package-win32-exe: package-win32-base package-win32-base-exe
809 # Clean up
810         rm -Rf $(top_builddir)/vlc-${VERSION}
811
812 package-win32-exe-linux: package-win32-base package-win32-base-exe-linux
813 # Clean up
814         rm -Rf $(top_builddir)/vlc-${VERSION}
815
816 package-win32-zip: package-win32-base-zip
817 # Clean up
818         rm -Rf $(top_builddir)/vlc-${VERSION}
819
820 package-win32-7zip: package-win32-base-7zip
821 # Clean up
822         rm -Rf $(top_builddir)/vlc-${VERSION}
823
824 package-win32-no-clean: package-win32-base-exe package-win32-base-zip package-win32-base-7zip
825
826 package-win32: package-win32-no-clean
827 # Clean up
828         rm -Rf $(top_builddir)/vlc-${VERSION}
829
830 package-wince-base: package-win-common package-win-common-strip
831
832 package-wince-base-zip:
833 # Create package 
834         zip -r vlc-${VERSION}-wince.zip vlc-${VERSION}
835
836 package-wince: package-wince-base  package-wince-base-zip
837 # Clean up
838         rm -Rf $(top_builddir)/vlc-${VERSION}
839
840
841 package-beos:
842 # Check that tmp isn't in the way
843         @if test -e $(srcdir)/tmp; then \
844           echo "Error: please remove $(srcdir)/tmp, it is in the way"; \
845           false ; \
846         else \
847           echo "OK." ; mkdir $(srcdir)/tmp ; \
848         fi
849
850 # Copy relevant files
851         mkdir -p $(srcdir)/tmp/vlc ;
852         cd $(srcdir) && cp -R vlc-bundle/* AUTHORS COPYING ChangeLog README \
853           THANKS NEWS tmp/vlc/ ;
854
855 # Create debug package
856         xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc ;
857         find $(srcdir)/tmp/vlc -exec mimeset -f {} \; ;
858         mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-${VERSION} ;
859         (cd $(srcdir)/tmp && zip -9 -r vlc-${VERSION}-BeOS-debug.zip vlc-${VERSION} )
860         mv $(srcdir)/tmp/vlc-${VERSION}-BeOS-debug.zip $(srcdir)/ ;
861         mv $(srcdir)/tmp/vlc-${VERSION} $(srcdir)/tmp/vlc ;
862
863 # Create normal package
864         $(STRIP) --strip-debug --strip-unneeded $(srcdir)/tmp/vlc/vlc ;
865         find $(srcdir)/tmp/vlc -name 'lib*.so' -exec $(STRIP) \
866           --strip-debug --strip-unneeded "{}" \; ;
867         xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc ;
868         find $(srcdir)/tmp/vlc -exec mimeset -f {} \; ;
869         mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-${VERSION} ;
870         (cd $(srcdir)/tmp &&  zip -9 -r vlc-${VERSION}-BeOS.zip vlc-${VERSION} )
871         mv $(srcdir)/tmp/vlc-${VERSION}-BeOS.zip $(srcdir)/ ;
872
873 # Clean up
874         rm -Rf $(srcdir)/tmp ;
875
876 package-macosx:
877 # Check that the temporary location isn't in the way
878         @if test -e "$(top_builddir)/vlc-${VERSION}/"; then \
879           rm -Rf "$(top_builddir)/vlc-${VERSION}/" ; \
880         fi
881
882         echo "Create package directory: vlc-${VERSION}/";
883         mkdir -p "$(top_builddir)/vlc-${VERSION}/";
884
885 # Copy relevant files 
886         @if test -e "$(top_builddir)/VLC-release.app/"; then \
887           cp -R "$(top_builddir)/VLC-release.app" "$(top_builddir)/vlc-${VERSION}/VLC.app"; \
888         else \
889           cp -R "$(top_builddir)/VLC.app" "$(top_builddir)/vlc-${VERSION}/VLC.app"; \
890         fi
891         cd "$(srcdir)" && cp AUTHORS COPYING ChangeLog README README.MacOSX.rtf THANKS NEWS $(top_builddir)/vlc-${VERSION}/ && cp -R extras/MacOSX/Delete_Preferences.app $(top_builddir)/vlc-${VERSION}/
892
893 # Create disk image 
894         echo "Creating disk image" ;
895         rm -f "$(top_builddir)/vlc-${VERSION}.dmg" ;
896         hdiutil create -srcfolder "$(top_builddir)/vlc-${VERSION}" \
897           "$(top_builddir)/vlc-${VERSION}.dmg" -format UDZO \
898           -scrub -imagekey zlib-level=9 ;
899         echo "Disk image creation completed:" ;
900         ls -la "$(top_builddir)/vlc-${VERSION}.dmg" ; echo ;
901
902 # Clean up
903         rm -Rf "$(top_builddir)/vlc-${VERSION}" ;
904
905 package-macosx-plugin:
906 if BUILD_MOZILLA
907 # Create Installer
908         rm -rf "$(top_builddir)/macosx-plugin-instdata/"; true
909         mkdir -p "$(top_builddir)/macosx-plugin-instdata"
910         cp -R "$(top_builddir)/mozilla/VLC Plugin.plugin" "$(top_builddir)/macosx-plugin-instdata"
911         rm -rf "$(top_builddir)/VLC Internet Plug-In.pkg"
912         /Developer/Tools/packagemaker -build -ds -p "$(top_builddir)/VLC Internet Plug-In.pkg" \
913         -f "$(top_builddir)/macosx-plugin-instdata" \
914         -i "$(srcdir)/extras/MacOSX/plugin/InstallerInfo.plist" \
915         -d "$(srcdir)/extras/MacOSX/plugin/InstallerDescription.plist"; true
916         rm -rf "$(top_builddir)/macosx-plugin-instdata/"
917
918 # Create disk image 
919         rm -f "$(top_builddir)/vlc-plugin-${VERSION}.dmg"; true
920         rm -rf "$(top_builddir)/vlc-plugin-${VERSION}/"; true
921         mkdir -p "$(top_builddir)/vlc-plugin-${VERSION}/"
922         mv "$(top_builddir)/VLC Internet Plug-In.pkg" "$(top_builddir)/vlc-plugin-${VERSION}/"
923         hdiutil create -srcfolder "$(top_builddir)/vlc-plugin-${VERSION}" \
924           "$(top_builddir)/vlc-plugin-${VERSION}.dmg" -format UDZO \
925           -scrub -imagekey zlib-level=9 ;
926         echo "Disk image creation completed:"
927         rm -rf "$(top_builddir)/vlc-plugin-${VERSION}"
928 endif
929
930 package-translations:
931         @if test -e "$(srcdir)/vlc-translations-${VERSION}"; then \
932           echo "Error: please remove $(srcdir)/vlc-translations-${VERSION}, it is in the way"; \
933           false; \
934         else \
935           echo "OK."; mkdir -p "$(srcdir)/vlc-translations-${VERSION}"; \
936         fi
937 # Copy translations
938         for i in $(ALL_LINGUAS); do \
939           cp "$(srcdir)/po/$${i}.po" \
940             "$(srcdir)/vlc-translations-${VERSION}/$${i}.po" \
941             || true ; \
942         done
943         cp "$(srcdir)/doc/translations.txt" \
944           "$(srcdir)/vlc-translations-${VERSION}/README.txt"
945
946         echo "#!/bin/sh" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
947         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
948         echo 'if test $$# != 1; then' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
949         echo "  echo \"Usage: convert-po.sh <.po file>\"" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
950         echo "  exit 1" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
951         echo "fi" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
952         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
953         echo 'msgfmt --statistics -o vlc.mo $$1' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
954
955         $(AMTAR) chof - $(srcdir)/vlc-translations-$(VERSION) \
956           | GZIP=$(GZIP_ENV) gzip -c >$(srcdir)/vlc-translations-$(VERSION).tar.gz
957
958 ###############################################################################
959 # PO translation files update
960 ###############################################################################
961 .PHONY: update-po
962
963 update-po:
964         rm -f $(top_srcdir)/po/POTFILES.in
965         { \
966           cd $(top_srcdir) && \
967           echo "# automatically created by make update-po" ; \
968           echo "" ; \
969           echo "# main sources" ; \
970           find include src -name '*.[chm]' -o -name '*.[ch]pp' \
971             | grep -v '\(vlc_symbols\|misc/modules_\|src/misc/version.c\)' \
972             | sort ; \
973           echo "" ; \
974           echo "# modules" ; \
975           find modules -name '*.[chm]' -o -name '*.[ch]pp' -o -wholename 'modules/gui/qt4/ui/*.ui'\
976             | grep -v '\(\.moc\.\|gui/gtk2/\)' \
977             | grep -vE 'qt4/ui/.*.h' |grep -v qt4/resources.cpp \
978             | sort ; \
979         } > $(top_srcdir)/po/POTFILES.in
980         rm -f $(top_srcdir)/po/vlc.pot
981         cd po && $(MAKE) POTFILES vlc.pot update-po
982
983 #cd po && $(MAKE) update-po
984
985 ###############################################################################
986 # Stamp rules
987 ###############################################################################
988 stamp-builtin: FORCE
989         @for dep in "" `$(VLC_CONFIG) --target builtin`; do \
990           if test "$${dep}" -nt "$(top_builddir)/vlc$(EXEEXT)"; then \
991             rm -f $@; \
992             break; \
993           fi; \
994         done
995         @if test ! -f $@; then printf "" > $@; fi
996
997 ###############################################################################
998 # Enforce Mac OS X deployment target environment variable
999 ###############################################################################
1000 macosx-sdk: Makefile.in $(HEADERS_include) vlc-config vlc-api.pl
1001         export MACOSX_DEPLOYMENT_TARGET=$(MACOSX_DEPLOYMENT_TARGET)
1002
1003 ###############################################################################
1004 # Force rule
1005 ###############################################################################
1006 FORCE: