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