]> git.sesse.net Git - vlc/blob - Makefile.am
* simplified the xcodebuild part, since VLC doesn't support Darwin 6 aka OSX 10.2...
[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         inst="`echo vlc | sed -e '$(transform)'`" ; \
355         for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
356           rm -f "$(DESTDIR)$(bindir)/$$i" && \
357           ln -sf "$${inst}" "$(DESTDIR)$(bindir)/$$i" ; \
358         fi ; done
359
360 # the opposite of install-{data,exec}-local
361 uninstall-local:
362         for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
363           rm -f "$(DESTDIR)$(bindir)/$$i" ; \
364         fi ; done
365
366 if HAVE_DARWIN
367 # Create the MacOS X app
368 vlc_app_DATA = VLC.app
369 vlc_appdir = $(bindir)
370 # VLC-release.app is the old VLC.app target
371 VLC-release.app: vlc
372         @if test -e "$(top_builddir)/tmp"; then \
373           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
374           false; \
375         else \
376           echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
377         fi
378         rm -Rf $(top_builddir)/VLC-release.app
379         cp -R $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
380         for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
381           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
382         done
383         mkdir -p $(top_builddir)/tmp/modules/audio_output
384         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
385         for i in \
386             AppleRemote.h \
387             AppleRemote.m \
388             about.h \
389             about.m \
390             applescript.h \
391             applescript.m \
392             controls.h \
393             controls.m \
394             equalizer.h \
395             equalizer.m \
396             intf.h \
397             intf.m \
398             macosx.m \
399             misc.h \
400             misc.m \
401             open.h \
402             open.m \
403             output.h \
404             output.m \
405             playlist.h \
406             playlist.m \
407             playlistinfo.h \
408             playlistinfo.m \
409             prefs_widgets.h \
410             prefs_widgets.m \
411             prefs.h \
412             prefs.m \
413             vout.h \
414             voutqt.m \
415             voutgl.m \
416             wizard.h \
417             wizard.m \
418             extended.h \
419             extended.m \
420             bookmarks.h \
421             bookmarks.m \
422             sfilters.h \
423             sfilters.m \
424             update.h \
425             update.m \
426             interaction.h \
427             interaction.m \
428             embeddedwindow.h \
429             embeddedwindow.m \
430             fspanel.h \
431             fspanel.m \
432             vout.m; do \
433           cp "$(srcdir)/modules/gui/macosx/$$i" \
434              $(top_builddir)/tmp/modules/gui/macosx; \
435         done
436         cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)' && \
437             cd ../../../ && \
438             cp -R $(top_builddir)/tmp/extras/MacOSX/build/Default/VLC.bundle \
439                   $(top_builddir)/VLC-release.app; \
440         rm -Rf $(top_builddir)/tmp
441         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS
442         $(INSTALL) $(top_builddir)/vlc \
443                    $(top_builddir)/VLC-release.app/Contents/MacOS/VLC
444         ln -sf ./VLC $(top_builddir)/VLC-release.app/Contents/MacOS/clivlc
445         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/modules
446         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
447           if test -n "$$i" ; \
448             then $(INSTALL) "$$i$(LIBEXT)" \
449                            "$(top_builddir)/VLC-release.app/Contents/MacOS/modules" ; \
450           fi ; done
451         if test -d $(srcdir)/extras/contrib/vlc-lib; then \
452           mkdir -p $(top_builddir)/VLC-release.app/Contents/MacOS/lib ; \
453           for i in $(srcdir)/extras/contrib/vlc-lib/*.dylib ; do \
454             $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/lib/`basename $${i}` ; \
455           done ; \
456         fi
457         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs
458         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js
459         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old
460         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/admin
461         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/vlm
462         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/images
463         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests
464         for i in $(srcdir)/share/http/*.* ; do \
465           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/`basename $${i}` ; \
466         done ; \
467         for i in $(srcdir)/share/http/dialogs/* ; do \
468           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs/`basename $${i}` ; \
469         done ; \
470         for i in $(srcdir)/share/http/js/*.* ; do \
471           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js/`basename $${i}` ; \
472         done ; \
473         for i in $(srcdir)/share/http/old/*.* ; do \
474           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/`basename $${i}` ; \
475         done ; \
476         for i in $(srcdir)/share/http/old/admin/*.* ; do \
477           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/admin/`basename $${i}` ; \
478         done ; \
479         for i in $(srcdir)/share/http/old/vlm/*.* ; do \
480           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/vlm/`basename $${i}` ; \
481         done ; \
482         for i in $(srcdir)/share/http/images/*.* ; do \
483           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/images/`basename $${i}` ; \
484         done ; \
485         for i in $(srcdir)/share/http/requests/*.* ; do \
486           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests/`basename $${i}` ; \
487         done ; \
488         $(INSTALL) -m 644 $(srcdir)/share/http/requests/readme $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests/readme.txt
489         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/locale
490         for i in $(ALL_LINGUAS); do \
491           mkdir -p $(top_builddir)/VLC-release.app/Contents/MacOS/locale/$${i}/LC_MESSAGES ; \
492           cp $(srcdir)/po/$${i}.gmo $(top_builddir)/VLC-release.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
493           mkdir -p $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
494           ln -sf ../English.lproj/InfoPlist.strings \
495               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
496           ln -sf ../English.lproj/MainMenu.nib \
497               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
498           ln -sf ../English.lproj/vlc.scriptTerminology \
499               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
500         done
501         printf "APPLVLC#" >| $(top_builddir)/VLC-release.app/Contents/PkgInfo
502
503 VLC.app: vlc
504         @if test -e "$(top_builddir)/tmp"; then \
505           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
506           false; \
507         else \
508           echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
509         fi
510         rm -Rf $(top_builddir)/VLC.app
511         cp -R $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
512         for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
513           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
514         done
515         mkdir -p $(top_builddir)/tmp/modules/audio_output
516         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
517         for i in \
518             AppleRemote.h \
519             AppleRemote.m \
520             about.h \
521             about.m \
522             applescript.h \
523             applescript.m \
524             controls.h \
525             controls.m \
526             equalizer.h \
527             equalizer.m \
528             intf.h \
529             intf.m \
530             macosx.m \
531             misc.h \
532             misc.m \
533             open.h \
534             open.m \
535             output.h \
536             output.m \
537             playlist.h \
538             playlist.m \
539             playlistinfo.h \
540             playlistinfo.m \
541             prefs_widgets.h \
542             prefs_widgets.m \
543             prefs.h \
544             prefs.m \
545             vout.h \
546             voutqt.m \
547             voutgl.m \
548             wizard.h \
549             wizard.m \
550             extended.h \
551             extended.m \
552             bookmarks.h \
553             bookmarks.m \
554             sfilters.h \
555             sfilters.m \
556             update.h \
557             update.m \
558             interaction.h \
559             interaction.m \
560             embeddedwindow.h \
561             embeddedwindow.m \
562             fspanel.h \
563             fspanel.m \
564             vout.m; do \
565           cp "$(srcdir)/modules/gui/macosx/$$i" \
566              $(top_builddir)/tmp/modules/gui/macosx; \
567         done
568         cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)' && \
569             cd ../../../ && \
570             cp -R $(top_builddir)/tmp/extras/MacOSX/build/Default/VLC.bundle \
571                   $(top_builddir)/VLC.app; \
572         rm -Rf $(top_builddir)/tmp
573         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS
574         $(INSTALL) $(top_builddir)/vlc \
575                    $(top_builddir)/VLC.app/Contents/MacOS/VLC
576         ln -sf ./VLC $(top_builddir)/VLC.app/Contents/MacOS/clivlc
577         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/modules
578         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
579           if test -n "$$i" ; \
580             then ln -sfn "`pwd`/$$i$(LIBEXT)" \
581                            "$(top_builddir)/VLC.app/Contents/MacOS/modules" ; \
582           fi ; done
583         if test -d $(srcdir)/extras/contrib/vlc-lib; then \
584           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/lib ; \
585           for i in $(srcdir)/extras/contrib/vlc-lib/*.dylib ; do \
586             ln -sfn `pwd`/$${i} $(top_builddir)/VLC.app/Contents/MacOS/lib/`basename $${i}` ; \
587           done ; \
588         fi
589         ln -sfn `pwd`/share $(top_builddir)/VLC.app/Contents/MacOS/
590         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/locale
591         for i in $(ALL_LINGUAS); do \
592           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES ; \
593           ln -sfn `pwd`/po/$${i}.gmo $(top_builddir)/VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
594           mkdir -p $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
595           ln -sf ../English.lproj/InfoPlist.strings \
596               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
597           ln -sf ../English.lproj/MainMenu.nib \
598               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
599         done
600         printf "APPLVLC#" >| $(top_builddir)/VLC.app/Contents/PkgInfo
601 endif
602
603 if HAVE_WIN32
604 DATA_win32_rc = $(noinst_share_vlc_win32_rc_DATA)
605 noinst_share_vlc_win32_rc_DATA = share/vlc_win32_rc.$(OBJEXT)
606 noinst_share_vlc_win32_rcdir = $(libdir)
607 share/vlc_win32_rc.$(OBJEXT): share/vlc_win32_rc.rc
608         $(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 $@
609 endif
610
611
612 ###############################################################################
613 # Building specific source packages
614 ###############################################################################
615
616 dist-woody: distdir
617         $(remove_distdir_woody)
618         mv $(distdir) $(PACKAGE)-woody-$(VERSION)
619         $(srcdir)/toolbox --make-woody $(PACKAGE)-woody-$(VERSION)
620         $(AMTAR) chof - $(PACKAGE)-woody-$(VERSION) \
621           | GZIP=$(GZIP_ENV) gzip -c >$(PACKAGE)-woody-$(VERSION).tar.gz
622         $(remove_distdir_woody)
623
624 remove_distdir_woody = \
625   { test ! -d $(PACKAGE)-woody-$(VERSION) \
626     || { find $(PACKAGE)-woody-$(VERSION) -type d ! -perm -200 \
627            -exec chmod u+w {} ';' \
628          && rm -fr $(PACKAGE)-woody-$(VERSION); }; }
629
630 ###############################################################################
631 # Building architecture-specific binary packages
632 ###############################################################################
633
634 # XXX: this rule is probably only useful to you if you have exactly
635 # the same setup as me. Contact sam@zoy.org if you need to use it.
636 #
637
638 package-win-common:
639 # Check that tmp isn't in the way
640         @if test -e "$(top_builddir)/vlc-${VERSION}"; then \
641           echo "Error: please remove $(top_builddir)/vlc-${VERSION}, it is in the way"; \
642           false; \
643         else \
644           echo "OK."; mkdir -p "$(top_builddir)/vlc-${VERSION}"; \
645         fi
646
647 # Copy relevant files
648         cp "$(top_builddir)/vlc$(EXEEXT)" "$(top_builddir)/vlc-${VERSION}/"
649         cp "$(top_srcdir)/vlc.exe.manifest" "$(top_builddir)/vlc-${VERSION}/"
650         cp "src/libvlc$(LIBEXT)" "vlc-${VERSION}/"
651
652         for file in AUTHORS MAINTAINERS THANKS NEWS COPYING README ; \
653           do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(top_builddir)/vlc-${VERSION}/$${file}.txt" ; \
654           unix2dos "$(top_builddir)/vlc-${VERSION}/$${file}.txt" ; done
655
656         mkdir $(top_builddir)/vlc-${VERSION}/locale
657         for i in $(ALL_LINGUAS); do \
658           mkdir -p "$(top_builddir)/vlc-${VERSION}/locale/$${i}/LC_MESSAGES" ; \
659           cp "$(srcdir)/po/$${i}.gmo" \
660             "$(top_builddir)/vlc-${VERSION}/locale/$${i}/LC_MESSAGES/vlc.mo" \
661             || true ; \
662         done
663
664         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/images"
665         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/requests"
666         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/js"
667         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/dialogs"
668         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/old"
669         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/old/vlm"
670         mkdir -p "$(top_builddir)/vlc-${VERSION}/http/old/admin"
671         cp $(srcdir)/share/http/*.html $(top_builddir)/vlc-${VERSION}/http/ ;
672         unix2dos $(top_builddir)/vlc-${VERSION}/http/*.html ;
673         cp $(srcdir)/share/http/*.css $(top_builddir)/vlc-${VERSION}/http/ ;
674         unix2dos $(top_builddir)/vlc-${VERSION}/http/*.css ;
675         cp $(srcdir)/share/http/js/*.js $(top_builddir)/vlc-${VERSION}/http/js/ ;
676         unix2dos $(top_builddir)/vlc-${VERSION}/http/js/*.js ;
677         cp $(srcdir)/share/http/dialogs/* $(top_builddir)/vlc-${VERSION}/http/dialogs/ ;
678         unix2dos $(top_builddir)/vlc-${VERSION}/http/dialogs/* ;
679         cp $(srcdir)/share/http/*.ico $(top_builddir)/vlc-${VERSION}/http/ ;
680         cp $(srcdir)/share/http/images/*.png $(top_builddir)/vlc-${VERSION}/http/images/
681         cp $(srcdir)/share/http/requests/*.xml $(top_builddir)/vlc-${VERSION}/http/requests/ ;
682         unix2dos $(top_builddir)/vlc-${VERSION}/http/requests/*.xml ;
683         cp $(srcdir)/share/http/requests/readme $(top_builddir)/vlc-${VERSION}/http/requests/readme.txt ;
684         unix2dos $(top_builddir)/vlc-${VERSION}/http/requests/readme.txt ;
685
686         cp $(srcdir)/share/http/old/*.html $(top_builddir)/vlc-${VERSION}/http/old/ ;
687         unix2dos $(top_builddir)/vlc-${VERSION}/http/old/*.html ;
688         cp $(srcdir)/share/http/old/*.css $(top_builddir)/vlc-${VERSION}/http/old/ ;
689         cp $(srcdir)/share/http/old/*.png $(top_builddir)/vlc-${VERSION}/http/old/ ;
690         cp $(srcdir)/share/http/old/vlm/*.html $(top_builddir)/vlc-${VERSION}/http/old/vlm/ ;
691         unix2dos $(top_builddir)/vlc-${VERSION}/http/old/vlm/*.html ;
692         cp $(srcdir)/share/http/old/admin/*.html $(top_builddir)/vlc-${VERSION}/http/old/admin/ ;
693         unix2dos $(top_builddir)/vlc-${VERSION}/http/old/admin/*.html ;
694
695         cp $(srcdir)/share/vlc48x48.ico $(top_builddir)/vlc-${VERSION}/ ;
696
697 if BUILD_MOZILLA
698         mkdir -p "$(top_builddir)/vlc-${VERSION}/mozilla"
699         cp $(top_builddir)/mozilla/*$(LIBEXT) $(top_builddir)/vlc-${VERSION}/mozilla/ ;
700 endif
701
702 if BUILD_ACTIVEX
703         mkdir -p "$(top_builddir)/vlc-${VERSION}/activex"
704         cp $(srcdir)/activex/README.TXT  $(top_builddir)/vlc-${VERSION}/activex/ ;
705         cp $(srcdir)/activex/test.html  $(top_builddir)/vlc-${VERSION}/activex/ ;
706         unix2dos $(top_builddir)/vlc-${VERSION}/activex/* ;
707
708         cp $(top_builddir)/activex/*$(LIBEXT) $(top_builddir)/vlc-${VERSION}/activex/ ;
709 endif
710 # Rebase all those DLLs to speed up loading (need cygwin rebase)
711         if rebase -b 0x42 /dev/null >/dev/null 2>&1; then \
712                 find $(top_builddir)/vlc-${VERSION} -type f -name '*.dll' -print | rebase -b 0x70000000 -T -; \
713         fi
714
715 package-win-common-strip:
716         $(STRIP) "$(top_builddir)/vlc-${VERSION}/vlc$(EXEEXT)"
717         $(STRIP) "vlc-${VERSION}/libvlc$(LIBEXT)"
718 if BUILD_MOZILLA
719         $(STRIP) $(top_builddir)/vlc-${VERSION}/mozilla/*$(LIBEXT);
720 endif
721 if BUILD_ACTIVEX
722         $(STRIP) $(top_builddir)/vlc-${VERSION}/activex/*$(LIBEXT);
723 endif
724
725 package-win32-base-debug: package-win-common
726 # Copy relevant files
727         cp "$(top_builddir)/vlc.win32.nsi" "$(top_builddir)/vlc-${VERSION}/"
728
729         mkdir -p "$(top_builddir)/vlc-${VERSION}/plugins"
730         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
731           if test -n "$$i" ; then \
732             $(INSTALL) "$(top_builddir)/$$i$(LIBEXT)" \
733             "$(top_builddir)/vlc-${VERSION}/plugins/" ; \
734           fi ; done
735
736         mkdir -p $(top_builddir)/vlc-${VERSION}/skins/fonts
737         for i in $(srcdir)/share/skins2/fonts/*.*; do \
738           cp $$i $(top_builddir)/vlc-${VERSION}/skins/fonts/ || true ; \
739         done
740         for i in $(srcdir)/share/skins2/*.*; do \
741           cp $$i $(top_builddir)/vlc-${VERSION}/skins/ || true ; \
742         done
743
744         mkdir -p "$(top_builddir)/vlc-${VERSION}/osdmenu"
745         cp $(srcdir)/share/osdmenu/*.* "$(top_builddir)/vlc-${VERSION}/osdmenu"
746         for dir in dvd dvd/selected dvd/unselect dvd/selection dvd/volume default default/selected default/selection default/volume;do \
747                 mkdir -p "$(top_builddir)/vlc-${VERSION}/osdmenu/$$dir"; \
748                 for file in $(srcdir)/share/osdmenu/$${dir}/*.*;do \
749                          cp $$file "$(top_builddir)/vlc-${VERSION}/osdmenu/$$dir" || true; \
750                 done; \
751         done
752         unix2dos $(top_builddir)/vlc-${VERSION}/osdmenu/*.cfg;
753         sed -i 's%share/osdmenu%osdmenu%g' $(top_builddir)/vlc-${VERSION}/osdmenu/*.cfg
754         sed -i 's%/%\\%g' $(top_builddir)/vlc-${VERSION}/osdmenu/*.cfg 
755
756
757 package-win32-base: package-win32-base-debug package-win-common-strip
758         for i in "" $(top_builddir)/vlc-${VERSION}/plugins/*$(LIBEXT) ; \
759           do if test -n "$$i" ; then $(STRIP) "$$i" ; fi ; done
760
761 package-win32-base-exe: package-win32-base
762 # Create package
763         if makensis -VERSION >/dev/null 2>&1; then \
764             MAKENSIS="makensis -DVERSION=${VERSION}"; \
765         elif [ -x "/cygdrive/c/Program Files/NSIS/makensis" ]; then \
766             MAKENSIS="/cygdrive/c/Program\ Files/NSIS/makensis /DVERSION=${VERSION}"; \
767         elif wine --version >dev/null 2>&1; then \
768             MAKENSIS="wine C:/Program\ Files/NSIS/makensis.exe /DVERSION=${VERSION}"; \
769         else \
770             echo 'Error: cannot locate makensis tool'; exit 1; \
771         fi; \
772         eval "$$MAKENSIS $(top_builddir)/vlc-${VERSION}/vlc.win32.nsi"
773
774 package-win32-base-exe-cygwin: package-win32-base-exe
775 # Create package
776
777 package-win32-base-exe-linux:
778 # Create package
779         makensis -DVERSION=${VERSION} $(top_builddir)/vlc-${VERSION}/vlc.win32.nsi
780
781 package-win32-base-zip: package-win32-base
782 # Create package 
783         zip -r -9 vlc-${VERSION}-win32.zip vlc-${VERSION}
784
785 package-win32-base-7zip: package-win32-base
786 # Create package 
787         7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on vlc-${VERSION}-win32.7z vlc-${VERSION}
788
789 package-win32-exe: package-win32-base package-win32-base-exe
790 # Clean up
791         rm -Rf $(top_builddir)/vlc-${VERSION}
792
793 package-win32-exe-linux: package-win32-base package-win32-base-exe-linux
794 # Clean up
795         rm -Rf $(top_builddir)/vlc-${VERSION}
796
797 package-win32-zip: package-win32-base-zip
798 # Clean up
799         rm -Rf $(top_builddir)/vlc-${VERSION}
800
801 package-win32-7zip: package-win32-base-7zip
802 # Clean up
803         rm -Rf $(top_builddir)/vlc-${VERSION}
804
805 package-win32-no-clean: package-win32-base-exe package-win32-base-zip package-win32-base-7zip
806
807 package-win32: package-win32-no-clean
808 # Clean up
809         rm -Rf $(top_builddir)/vlc-${VERSION}
810
811 package-wince-base: package-win-common package-win-common-strip
812
813 package-wince-base-zip:
814 # Create package 
815         zip -r vlc-${VERSION}-wince.zip vlc-${VERSION}
816
817 package-wince: package-wince-base  package-wince-base-zip
818 # Clean up
819         rm -Rf $(top_builddir)/vlc-${VERSION}
820
821
822 package-beos:
823 # Check that tmp isn't in the way
824         @if test -e $(srcdir)/tmp; then \
825           echo "Error: please remove $(srcdir)/tmp, it is in the way"; \
826           false ; \
827         else \
828           echo "OK." ; mkdir $(srcdir)/tmp ; \
829         fi
830
831 # Copy relevant files
832         mkdir -p $(srcdir)/tmp/vlc ;
833         cd $(srcdir) && cp -R vlc-bundle/* AUTHORS COPYING ChangeLog README \
834           THANKS NEWS tmp/vlc/ ;
835
836 # Create debug package
837         xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc ;
838         find $(srcdir)/tmp/vlc -exec mimeset -f {} \; ;
839         mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-${VERSION} ;
840         (cd $(srcdir)/tmp && zip -9 -r vlc-${VERSION}-BeOS-debug.zip vlc-${VERSION} )
841         mv $(srcdir)/tmp/vlc-${VERSION}-BeOS-debug.zip $(srcdir)/ ;
842         mv $(srcdir)/tmp/vlc-${VERSION} $(srcdir)/tmp/vlc ;
843
844 # Create normal package
845         $(STRIP) --strip-debug --strip-unneeded $(srcdir)/tmp/vlc/vlc ;
846         find $(srcdir)/tmp/vlc -name 'lib*.so' -exec $(STRIP) \
847           --strip-debug --strip-unneeded "{}" \; ;
848         xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc ;
849         find $(srcdir)/tmp/vlc -exec mimeset -f {} \; ;
850         mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-${VERSION} ;
851         (cd $(srcdir)/tmp &&  zip -9 -r vlc-${VERSION}-BeOS.zip vlc-${VERSION} )
852         mv $(srcdir)/tmp/vlc-${VERSION}-BeOS.zip $(srcdir)/ ;
853
854 # Clean up
855         rm -Rf $(srcdir)/tmp ;
856
857 package-macosx:
858 # Check that the temporary location isn't in the way
859         @if test -e "$(top_builddir)/vlc-${VERSION}/"; then \
860           rm -Rf "$(top_builddir)/vlc-${VERSION}/" ; \
861         fi
862
863         echo "Create package directory: vlc-${VERSION}/";
864         mkdir -p "$(top_builddir)/vlc-${VERSION}/";
865
866 # Copy relevant files 
867         @if test -e "$(top_builddir)/VLC-release.app/"; then \
868           cp -R "$(top_builddir)/VLC-release.app" "$(top_builddir)/vlc-${VERSION}/VLC.app"; \
869         else \
870           cp -R "$(top_builddir)/VLC.app" "$(top_builddir)/vlc-${VERSION}/VLC.app"; \
871         fi
872         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}/
873
874 # Create disk image 
875         echo "Creating disk image" ;
876         rm -f "$(top_builddir)/vlc-${VERSION}.dmg" ;
877         hdiutil create -srcfolder "$(top_builddir)/vlc-${VERSION}" \
878           "$(top_builddir)/vlc-${VERSION}.dmg" -format UDZO \
879           -scrub -imagekey zlib-level=9 ;
880         echo "Disk image creation completed:" ;
881         ls -la "$(top_builddir)/vlc-${VERSION}.dmg" ; echo ;
882
883 # Clean up
884         rm -Rf "$(top_builddir)/vlc-${VERSION}" ;
885
886 package-macosx-plugin:
887 if BUILD_MOZILLA
888 # Create Installer
889         rm -rf "$(top_builddir)/macosx-plugin-instdata/"; true
890         mkdir -p "$(top_builddir)/macosx-plugin-instdata"
891         cp -R "$(top_builddir)/mozilla/VLC Plugin.plugin" "$(top_builddir)/macosx-plugin-instdata"
892         rm -rf "$(top_builddir)/VLC Internet Plug-In.pkg"
893         /Developer/Tools/packagemaker -build -ds -p "$(top_builddir)/VLC Internet Plug-In.pkg" \
894         -f "$(top_builddir)/macosx-plugin-instdata" \
895         -i "$(srcdir)/extras/MacOSX/plugin/InstallerInfo.plist" \
896         -d "$(srcdir)/extras/MacOSX/plugin/InstallerDescription.plist"; true
897         rm -rf "$(top_builddir)/macosx-plugin-instdata/"
898
899 # Create disk image 
900         rm -f "$(top_builddir)/vlc-plugin-${VERSION}.dmg"; true
901         rm -rf "$(top_builddir)/vlc-plugin-${VERSION}/"; true
902         mkdir -p "$(top_builddir)/vlc-plugin-${VERSION}/"
903         mv "$(top_builddir)/VLC Internet Plug-In.pkg" "$(top_builddir)/vlc-plugin-${VERSION}/"
904         hdiutil create -srcfolder "$(top_builddir)/vlc-plugin-${VERSION}" \
905           "$(top_builddir)/vlc-plugin-${VERSION}.dmg" -format UDZO \
906           -scrub -imagekey zlib-level=9 ;
907         echo "Disk image creation completed:"
908         rm -rf "$(top_builddir)/vlc-plugin-${VERSION}"
909 endif
910
911 package-translations:
912         @if test -e "$(srcdir)/vlc-translations-${VERSION}"; then \
913           echo "Error: please remove $(srcdir)/vlc-translations-${VERSION}, it is in the way"; \
914           false; \
915         else \
916           echo "OK."; mkdir -p "$(srcdir)/vlc-translations-${VERSION}"; \
917         fi
918 # Copy translations
919         for i in $(ALL_LINGUAS); do \
920           cp "$(srcdir)/po/$${i}.po" \
921             "$(srcdir)/vlc-translations-${VERSION}/$${i}.po" \
922             || true ; \
923         done
924         cp "$(srcdir)/doc/translations.txt" \
925           "$(srcdir)/vlc-translations-${VERSION}/README.txt"
926
927         echo "#!/bin/sh" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
928         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
929         echo 'if test $$# != 1; then' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
930         echo "  echo \"Usage: convert-po.sh <.po file>\"" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
931         echo "  exit 1" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
932         echo "fi" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
933         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
934         echo 'msgfmt --statistics -o vlc.mo $$1' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
935
936         $(AMTAR) chof - $(srcdir)/vlc-translations-$(VERSION) \
937           | GZIP=$(GZIP_ENV) gzip -c >$(srcdir)/vlc-translations-$(VERSION).tar.gz
938
939 ###############################################################################
940 # PO translation files update
941 ###############################################################################
942 .PHONY: update-po
943
944 update-po:
945         rm -f $(top_srcdir)/po/POTFILES.in
946         { \
947           cd $(top_srcdir) && \
948           echo "# automatically created by make update-po" ; \
949           echo "" ; \
950           echo "# main sources" ; \
951           find include src -name '*.[chm]' -o -name '*.[ch]pp' \
952             | grep -v '\(vlc_symbols\|misc/modules_\|src/misc/version.c\)' \
953             | sort ; \
954           echo "" ; \
955           echo "# modules" ; \
956           find modules -name '*.[chm]' -o -name '*.[ch]pp' -o -wholename 'modules/gui/qt4/ui/*.ui'\
957             | grep -v '\(\.moc\.\|gui/gtk2/\)' \
958             | grep -vE 'qt4/ui/.*.h' |grep -v qt4/resources.cpp \
959             | sort ; \
960         } > $(top_srcdir)/po/POTFILES.in
961         rm -f $(top_srcdir)/po/vlc.pot
962         cd po && $(MAKE) POTFILES vlc.pot update-po
963
964 #cd po && $(MAKE) update-po
965
966 ###############################################################################
967 # Stamp rules
968 ###############################################################################
969 stamp-builtin: FORCE
970         @for dep in "" `$(VLC_CONFIG) --target builtin`; do \
971           if test "$${dep}" -nt "$(top_builddir)/vlc$(EXEEXT)"; then \
972             rm -f $@; \
973             break; \
974           fi; \
975         done
976         @if test ! -f $@; then printf "" > $@; fi
977
978 ###############################################################################
979 # Enforce Mac OS X deployment target environment variable
980 ###############################################################################
981 macosx-sdk: Makefile.in $(HEADERS_include) vlc-config vlc-api.pl
982         export MACOSX_DEPLOYMENT_TARGET=$(MACOSX_DEPLOYMENT_TARGET)
983
984 ###############################################################################
985 # Force rule
986 ###############################################################################
987 FORCE: