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