]> git.sesse.net Git - vlc/blob - Makefile.am
Ugly and almost working npapi build rules
[vlc] / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 # SUBDIRS stores the directories where a "make" is required when building
6 # something. DIST_SUBDIRS stores the directories where nothing is built but
7 # which have makefiles with distribution information.
8 #  - src (libvlc) is nedeed by modules
9 #  - libs/* are needed by modules
10 BASE_SUBDIRS = po compat src bin modules share doc test
11 EXTRA_SUBDIRS = m4 \
12         libs/loader libs/srtp libs/unzip \
13         projects/activex
14 DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
15
16 SUBDIRS = po compat src
17 if LOADER
18 SUBDIRS += libs/loader
19 endif
20 if HAVE_GCRYPT
21 SUBDIRS += libs/srtp
22 endif
23 if HAVE_ZLIB
24 if !HAVE_MINIZIP
25 SUBDIRS += libs/unzip
26 endif
27 endif
28 if BUILD_VLC
29 SUBDIRS += bin
30 endif
31 SUBDIRS += modules share doc test
32 if BUILD_ACTIVEX
33 SUBDIRS += projects/activex
34 endif
35
36 EXTRA_DIST = \
37         HACKING \
38         INSTALL.win32 \
39         extras/package/win32/vlc.exe.manifest \
40         extras/package/win32/libvlc.dll.manifest \
41         extras/package/macosx/README.MacOSX.rtf \
42         vlc-config.in.in \
43         extras/package/rpm/vlc.fedora.spec \
44         extras/package/rpm/vlc.altlinux.spec \
45         extras/package/win32/vlc.win32.nsi.in \
46         extras/package/win32/spad.nsi.in \
47         extras/package/win32/UAC.nsh \
48         extras/package/win32/UAC.dll \
49         extras/package/win32/languages/declaration.nsh \
50         extras/package/win32/languages/bengali.nsh \
51         extras/package/win32/languages/brazilian_portuguese.nsh \
52         extras/package/win32/languages/bulgarian.nsh \
53         extras/package/win32/languages/catalan.nsh \
54         extras/package/win32/languages/danish.nsh \
55         extras/package/win32/languages/dutch.nsh \
56         extras/package/win32/languages/english.nsh \
57         extras/package/win32/languages/estonian.nsh \
58         extras/package/win32/languages/finnish.nsh \
59         extras/package/win32/languages/french.nsh \
60         extras/package/win32/languages/german.nsh \
61         extras/package/win32/languages/hungarian.nsh \
62         extras/package/win32/languages/italian.nsh \
63         extras/package/win32/languages/japanese.nsh \
64         extras/package/win32/languages/occitan.nsh \
65         extras/package/win32/languages/polish.nsh \
66         extras/package/win32/languages/punjabi.nsh \
67         extras/package/win32/languages/romanian.nsh \
68         extras/package/win32/languages/schinese.nsh \
69         extras/package/win32/languages/slovak.nsh \
70         extras/package/win32/languages/slovenian.nsh \
71         extras/package/win32/languages/sorani.nsh \
72         extras/package/win32/languages/spanish.nsh
73
74 dist_noinst_SCRIPTS = bootstrap
75 nodist_noinst_SCRIPTS = compile
76
77 BUILT_SOURCES_distclean = vlc-config
78 if HAVE_WIN32
79 BUILT_SOURCES_distclean += \
80         extras/package/win32/vlc.win32.nsi extras/package/win32/spad.nsi
81 endif
82 if HAVE_DARWIN
83 BUILT_SOURCES_clean = macosx-sdk
84 else
85 BUILT_SOURCES_clean =
86 endif
87
88 BUILT_SOURCES = $(BUILT_SOURCES_distclean) $(BUILT_SOURCES_clean)
89
90 SUFFIXES = 
91
92 DISTCHECK_CONFIGURE_FLAGS = \
93         --enable-fast-install \
94         --disable-a52 \
95         --disable-avcodec --disable-avformat \
96         --disable-postproc --disable-swscale \
97         --disable-dbus \
98         --disable-mad --disable-libmpeg2 \
99         --disable-faad --disable-skins2 \
100         --disable-live555 \
101         --disable-fribidi --disable-glx \
102         --disable-mkv \
103         --with-kde-solid='$${datadir}/kde4/apps'
104
105 ACLOCAL_AMFLAGS = -I m4
106 AUTOMAKE_OPTIONS = \
107         1.11 \
108         -Wall \
109         check-news \
110         dist-xz \
111         no-dist-gzip
112 #       std-options
113
114 ChangeLog: Makefile.am
115         rm -f -- "$@"
116         cd doc && $(MAKE) $(AM_MAKEFLAGS) changelogs
117         ln -sf doc/ChangeLog-2009 "$@"
118
119 ###############################################################################
120 # MacOS X project
121 ###############################################################################
122
123 EXTRA_DIST += \
124         extras/package/macosx/Resources/English.lproj/MainMenu.nib/designable.nib \
125         extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib \
126         extras/package/macosx/Resources/English.lproj/MediaInfo.nib/designable.nib \
127         extras/package/macosx/Resources/English.lproj/MediaInfo.nib/keyedobjects.nib \
128         extras/package/macosx/Resources/English.lproj/About.nib/designable.nib \
129         extras/package/macosx/Resources/English.lproj/About.nib/keyedobjects.nib \
130         extras/package/macosx/Resources/English.lproj/Open.nib/designable.nib \
131         extras/package/macosx/Resources/English.lproj/Open.nib/keyedobjects.nib \
132         extras/package/macosx/Resources/English.lproj/Preferences.nib/designable.nib \
133         extras/package/macosx/Resources/English.lproj/Preferences.nib/keyedobjects.nib \
134         extras/package/macosx/Resources/English.lproj/Wizard.nib/designable.nib \
135         extras/package/macosx/Resources/English.lproj/Wizard.nib/keyedobjects.nib \
136         extras/package/macosx/Resources/English.lproj/Bookmarks.nib/designable.nib \
137         extras/package/macosx/Resources/English.lproj/Bookmarks.nib/keyedobjects.nib \
138         extras/package/macosx/Resources/English.lproj/Extended.nib/designable.nib \
139         extras/package/macosx/Resources/English.lproj/Extended.nib/keyedobjects.nib \
140         extras/package/macosx/Resources/English.lproj/CoreDialogs.nib/designable.nib \
141         extras/package/macosx/Resources/English.lproj/CoreDialogs.nib/keyedobjects.nib \
142         extras/package/macosx/Resources/English.lproj/ErrorPanel.nib/designable.nib \
143         extras/package/macosx/Resources/English.lproj/ErrorPanel.nib/keyedobjects.nib \
144         extras/package/macosx/Resources/English.lproj/InfoPlist.strings.in \
145         extras/package/macosx/Resources/dsa_pub.pem \
146         extras/package/macosx/Resources/aiff.icns \
147         extras/package/macosx/Resources/audio.icns \
148         extras/package/macosx/Resources/avi.icns \
149         extras/package/macosx/Resources/flv.icns \
150         extras/package/macosx/Resources/generic.icns \
151         extras/package/macosx/Resources/m4a.icns \
152         extras/package/macosx/Resources/m4v.icns \
153         extras/package/macosx/Resources/mkv.icns \
154         extras/package/macosx/Resources/mov.icns \
155         extras/package/macosx/Resources/movie.icns \
156         extras/package/macosx/Resources/mp3.icns \
157         extras/package/macosx/Resources/mpeg.icns \
158         extras/package/macosx/Resources/ogg.icns \
159         extras/package/macosx/Resources/playlist.icns \
160         extras/package/macosx/Resources/rm.icns \
161         extras/package/macosx/Resources/subtitle.icns \
162         extras/package/macosx/Resources/vob.icns \
163         extras/package/macosx/Resources/wav.icns \
164         extras/package/macosx/Resources/vlc.icns \
165         extras/package/macosx/Resources/wma.icns \
166         extras/package/macosx/Resources/wmv.icns \
167         extras/package/macosx/Resources/pause.png \
168         extras/package/macosx/Resources/pause_blue.png \
169         extras/package/macosx/Resources/play.png \
170         extras/package/macosx/Resources/play_blue.png \
171         extras/package/macosx/Resources/stop.png \
172         extras/package/macosx/Resources/stop_blue.png \
173         extras/package/macosx/Resources/display_left.png \
174         extras/package/macosx/Resources/display_middle.png \
175         extras/package/macosx/Resources/display_right.png \
176         extras/package/macosx/Resources/display_slider.png \
177         extras/package/macosx/Resources/display_track.png \
178         extras/package/macosx/Resources/equalizerdrawer_active.png \
179         extras/package/macosx/Resources/equalizerdrawer_blue.png \
180         extras/package/macosx/Resources/fullscreen_active.png \
181         extras/package/macosx/Resources/fullscreen_blue.png \
182         extras/package/macosx/Resources/next_active.png \
183         extras/package/macosx/Resources/next_blue.png \
184         extras/package/macosx/Resources/playlistdrawer_active.png \
185         extras/package/macosx/Resources/playlistdrawer_blue.png \
186         extras/package/macosx/Resources/previous_active.png \
187         extras/package/macosx/Resources/previous_blue.png \
188         extras/package/macosx/Resources/skip_forward_active.png \
189         extras/package/macosx/Resources/skip_forward_blue.png \
190         extras/package/macosx/Resources/skip_previous_active.png \
191         extras/package/macosx/Resources/skip_previous_blue.png \
192         extras/package/macosx/Resources/volume_high.png \
193         extras/package/macosx/Resources/volume_low.png \
194         extras/package/macosx/Resources/volumeslider_blue.png \
195         extras/package/macosx/Resources/volumeslider_normal.png \
196         extras/package/macosx/Resources/volumetrack.png \
197         extras/package/macosx/Resources/about_bg.png \
198         extras/package/macosx/Resources/skip_forward_active_embedded.png \
199         extras/package/macosx/Resources/play_embedded.png \
200         extras/package/macosx/Resources/pause_embedded.png \
201         extras/package/macosx/Resources/skip_previous_active_embedded.png \
202         extras/package/macosx/Resources/pause_embedded_blue.png \
203         extras/package/macosx/Resources/play_embedded_blue.png \
204         extras/package/macosx/Resources/skip_forward_embedded_blue.png \
205         extras/package/macosx/Resources/skip_previous_embedded_blue.png \
206         extras/package/macosx/Resources/vlc.scriptSuite \
207         extras/package/macosx/Resources/vlc.scriptTerminology \
208         extras/package/macosx/Resources/README \
209         extras/package/macosx/Resources/add_embedded.png \
210         extras/package/macosx/Resources/add_embedded_blue.png \
211         extras/package/macosx/Resources/repeat_embedded.png \
212         extras/package/macosx/Resources/repeat_embedded_blue.png \
213         extras/package/macosx/Resources/repeat_single_embedded_blue.png \
214         extras/package/macosx/Resources/shuffle_embedded.png \
215         extras/package/macosx/Resources/shuffle_embedded_blue.png \
216         extras/package/macosx/Resources/fs_volume_slider_knob_highlight.png \
217         extras/package/macosx/Resources/fs_volume_slider_knob.png \
218         extras/package/macosx/Resources/fs_volume_slider_bar.png \
219         extras/package/macosx/Resources/fs_volume_mute_highlight.png \
220         extras/package/macosx/Resources/fs_volume_mute.png \
221         extras/package/macosx/Resources/fs_volume_max_highlight.png \
222         extras/package/macosx/Resources/fs_volume_max.png \
223         extras/package/macosx/Resources/fs_time_slider_knob_highlight.png \
224         extras/package/macosx/Resources/fs_time_slider_knob.png \
225         extras/package/macosx/Resources/fs_time_slider.png \
226         extras/package/macosx/Resources/fs_stop_highlight.png \
227         extras/package/macosx/Resources/fs_stop.png \
228         extras/package/macosx/Resources/fs_skip_previous_highlight.png \
229         extras/package/macosx/Resources/fs_skip_previous.png \
230         extras/package/macosx/Resources/fs_skip_next_highlight.png \
231         extras/package/macosx/Resources/fs_skip_next.png \
232         extras/package/macosx/Resources/fs_rewind_highlight.png \
233         extras/package/macosx/Resources/fs_rewind.png \
234         extras/package/macosx/Resources/fs_play_highlight.png \
235         extras/package/macosx/Resources/fs_play.png \
236         extras/package/macosx/Resources/fs_pause_highlight.png \
237         extras/package/macosx/Resources/fs_pause.png \
238         extras/package/macosx/Resources/fs_forward_highlight.png \
239         extras/package/macosx/Resources/fs_forward.png \
240         extras/package/macosx/Resources/fs_exit_fullscreen_highlight.png \
241         extras/package/macosx/Resources/fs_exit_fullscreen.png \
242         extras/package/macosx/Resources/fs_background.png \
243         extras/package/macosx/Resources/add_embedded_graphite.png \
244         extras/package/macosx/Resources/equalizerdrawer_graphite.png \
245         extras/package/macosx/Resources/fullscreen_graphite.png \
246         extras/package/macosx/Resources/next_graphite.png \
247         extras/package/macosx/Resources/pause_embedded_graphite.png \
248         extras/package/macosx/Resources/pause_graphite.png \
249         extras/package/macosx/Resources/play_embedded_graphite.png \
250         extras/package/macosx/Resources/play_graphite.png \
251         extras/package/macosx/Resources/playlistdrawer_graphite.png \
252         extras/package/macosx/Resources/previous_graphite.png \
253         extras/package/macosx/Resources/repeat_embedded_graphite.png \
254         extras/package/macosx/Resources/repeat_single_embedded_graphite.png \
255         extras/package/macosx/Resources/shuffle_embedded_graphite.png \
256         extras/package/macosx/Resources/skip_forward_embedded_graphite.png \
257         extras/package/macosx/Resources/skip_forward_graphite.png \
258         extras/package/macosx/Resources/skip_previous_embedded_graphite.png \
259         extras/package/macosx/Resources/skip_previous_graphite.png \
260         extras/package/macosx/Resources/stop_graphite.png \
261         extras/package/macosx/Resources/volumeslider_graphite.png \
262         extras/package/macosx/Resources/backward_big_down.png \
263         extras/package/macosx/Resources/backward_big.png \
264         extras/package/macosx/Resources/eq_sm.pdf \
265         extras/package/macosx/Resources/forward_big_down.png \
266         extras/package/macosx/Resources/forward_big.png \
267         extras/package/macosx/Resources/fs_sm.pdf \
268         extras/package/macosx/Resources/list_sm.pdf \
269         extras/package/macosx/Resources/next_sm.pdf \
270         extras/package/macosx/Resources/pause_big_down.png \
271         extras/package/macosx/Resources/pause_big.png \
272         extras/package/macosx/Resources/play_big_down.png \
273         extras/package/macosx/Resources/play_big.png \
274         extras/package/macosx/Resources/prev_sm.pdf \
275         extras/package/macosx/Resources/sidebarAdd.png \
276         extras/package/macosx/Resources/sidebarRepeat.png \
277         extras/package/macosx/Resources/sidebarRepeatOn.png \
278         extras/package/macosx/Resources/sidebarRepeatOneOn.png \
279         extras/package/macosx/Resources/sidebarResizeWidget.png \
280         extras/package/macosx/Resources/sidebarShuffle.png \
281         extras/package/macosx/Resources/sidebarShuffleOn.png \
282         extras/package/macosx/Resources/sidebarStatusAreaBackground.png \
283         extras/package/macosx/Resources/stop_sm.pdf \
284         extras/package/macosx/Resources/noart.png \
285         extras/package/macosx/Resources/spref_cone_Audio_64.png \
286         extras/package/macosx/Resources/spref_cone_Hotkeys_64.png \
287         extras/package/macosx/Resources/spref_cone_Input_64.png \
288         extras/package/macosx/Resources/spref_cone_Interface_64.png \
289         extras/package/macosx/Resources/spref_cone_Subtitles_64.png \
290         extras/package/macosx/Resources/spref_cone_Video_64.png \
291         extras/package/macosx/fullscreen_panel.svg \
292         extras/package/macosx/ub.sh \
293         extras/package/macosx/vlc.xcodeproj/project.pbxproj \
294         extras/package/macosx/Delete_Preferences.app/Contents/Info.plist \
295         extras/package/macosx/Delete_Preferences.app/Contents/PkgInfo \
296         extras/package/macosx/Delete_Preferences.app/Contents/MacOS/applet \
297         extras/package/macosx/Delete_Preferences.app/Contents/Resources/description.rtfd/TXT.rtf \
298         extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.icns \
299         extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.rsrc \
300         extras/package/macosx/Delete_Preferences.app/Contents/Resources/Scripts/main.scpt \
301         extras/package/macosx/eyetvplugin/EyeTVPluginDefs.h \
302         extras/package/macosx/eyetvplugin/Info.plist \
303         extras/package/macosx/eyetvplugin/eyetvplugin.c \
304         extras/package/macosx/eyetvplugin/eyetvplugin.h \
305         extras/package/macosx/eyetvplugin/English.lproj/InfoPlist.strings \
306         extras/package/macosx/eyetvplugin/eyetvplugin.xcodeproj/project.pbxproj \
307         extras/package/macosx/README.MacOSX.rtf \
308         extras/package/macosx/Info.plist.in
309
310
311 ###############################################################################
312 # Various utilities ( editor syntax files, D-Bus controller ... )
313 ##############################################################################
314 EXTRA_DIST += \
315         extras/analyser/zsh_completion.sh \
316         extras/analyser/zsh.cpp \
317         extras/analyser/emacs.init \
318         extras/analyser/vlc.vim \
319         extras/analyser/valgrind.suppressions \
320         extras/buildsystem/make.pl \
321         extras/misc/mpris.py \
322         extras/misc/mpris.glade
323
324 ###############################################################################
325 # Building libvlc
326 ###############################################################################
327
328 noinst_SCRIPTS = vlc-config
329 vlc-config: $(top_builddir)/config.status $(top_builddir)/vlc-config.in
330         $(SHELL) ./config.status --file=$@
331         chmod 0755 $@
332         touch $@
333
334 vlc-config.in: vlc-config.in.in
335         ./config.status --recheck
336         touch $@
337
338 CLEANFILES = $(BUILT_SOURCES_clean)
339 DISTCLEANFILES = $(BUILT_SOURCES_distclean) vlc-config.in compile
340 MAINTAINERCLEANFILES = ChangeLog
341
342 # Shortcut for developers to rebuild the core (libvlc + vlc)
343 # Don't use it if you don't know what it is about.
344 # Don't complain if it doesn't work. -- Courmisch
345 libcompat:
346         cd compat && $(MAKE) $(AM_MAKEFLAGS)
347
348 libvlc: libcompat
349         cd src && $(MAKE) $(AM_MAKEFLAGS) libvlc.la
350
351 core: libvlc vlc
352         cd bin && $(MAKE) $(AM_MAKEFLAGS) vlc$(EXEEXT) vlc-static$(EXEEXT)
353
354 doc:
355         cd doc && $(MAKE) $(AM_MAKEFLAGS) doc
356
357 .PHONY: libvlc core doc
358
359 if HAVE_BEOS
360 noinst_DATA = vlc-bundle
361 vlc-bundle: vlc
362         rm -Rf $(top_builddir)/vlc-bundle ; mkdir -p $(top_builddir)/vlc-bundle
363         cp $(top_builddir)/vlc $(top_builddir)/vlc-bundle/
364         xres -o $(top_builddir)/vlc-bundle/vlc $(srcdir)/share/vlc_beos.rsrc
365         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
366           if test -n "$$i" ; then \
367             mkdir -p $(top_builddir)/vlc-bundle/plugins ; \
368             cp "$$i$(LIBEXT)" $(top_builddir)/vlc-bundle/plugins/ ; \
369           fi ; \
370         done
371         if test -d $(CONTRIB_DIR)/vlc-lib ; then \
372           mkdir -p $(top_builddir)/vlc-bundle/lib ; \
373           for i in $(CONTRIB_DIR)/vlc-lib/*.so ; do \
374             cp $$i $(top_builddir)/vlc-bundle/lib/ ; \
375           done ; \
376         fi
377         cat $(top_srcdir)/po/LINGUAS | while read i; do \
378           mkdir -p "$(top_builddir)/vlc-bundle/share/locale/$$i/LC_MESSAGES" ; \
379           cp "$(top_builddir)/po/$$i.gmo" \
380             "$(top_builddir)/vlc-bundle/share/locale/$$i/LC_MESSAGES/vlc.mo" || true ; \
381         done
382         find $(top_builddir)/vlc-bundle -type f -exec mimeset -f "{}" \;
383 endif
384
385 ###############################################################################
386 # Building aliases
387 ###############################################################################
388
389 ALL_ALIASES = cvlc rvlc svlc qvlc nvlc mvlc
390 bin_SCRIPTS = $(ALIASES)
391 CLEANFILES += $(ALIASES) $(noinst_SCRIPTS)
392 EXTRA_SCRIPTS = $(ALL_ALIASES)
393
394 dist_noinst_SCRIPTS += make-alias
395
396 MKALIAS = bindir="$(bindir)" transform="$(transform)" program_prefix="$(program_prefix)" program_suffix="$(program_suffix)" $(top_srcdir)/make-alias $@
397
398 cvlc: make-alias Makefile
399         $(AM_V_GEN)$(MKALIAS) dummy
400
401 rvlc: make-alias Makefile
402         $(AM_V_GEN)$(MKALIAS) rc
403
404 svlc: make-alias Makefile
405         $(AM_V_GEN)$(MKALIAS) skins2
406
407 qvlc: make-alias Makefile
408         $(AM_V_GEN)$(MKALIAS) qt4
409
410 nvlc: make-alias Makefile
411         $(AM_V_GEN)$(MKALIAS) ncurses
412
413 mvlc: make-alias Makefile
414         $(AM_V_GEN)$(MKALIAS) maemo
415
416 if BUILD_VLC
417 noinst_SCRIPTS += vlc$(EXEEXT)
418 endif
419
420 vlc$(EXEEXT):
421         $(AM_V_GEN)ln -sf bin/vlc-static$(EXEEXT) vlc$(EXEEXT)
422
423 if HAVE_DARWIN
424 if BUILD_MACOSX_VLC_APP
425 # Create the MacOS X app
426 noinst_DATA = VLC.app
427 endif
428 endif
429
430 silentstd = $(silentstd_$(V))
431 silentstd_ = $(silentstd_$(AM_DEFAULT_VERBOSITY))
432 silentstd_0 = 2>&1 >/dev/null
433
434 # VLC-release.app for packaging and giving it to your friends
435 # use package-macosx to get a nice dmg
436 VLC-release.app: vlc
437         ( cd src && $(MAKE) $(AM_MAKEFLAGS) install $(silentstd) )
438         rm -Rf "$(top_builddir)/tmp"
439         mkdir -p "$(top_builddir)/tmp/extras/package/macosx"
440         rm -Rf $(top_builddir)/VLC-release.app
441         for i in vlc.xcodeproj Resources README.MacOSX.rtf ; do \
442           cp -R $(srcdir)/extras/package/macosx/$$i $(top_builddir)/tmp/extras/package/macosx/; \
443         done
444         REVISION=`(git --git-dir=$(srcdir)/.git describe --always || echo exported)` && \
445         cat $(top_builddir)/extras/package/macosx/Info.plist | \
446         sed "s/#REVISION#/$$REVISION/g" > $(top_builddir)/tmp/extras/package/macosx/Info.plist
447         cp -R $(top_builddir)/extras/package/macosx/Resources $(top_builddir)/tmp/extras/package/macosx/
448         for i in AUTHORS COPYING THANKS; do \
449           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
450         done
451         mkdir -p $(top_builddir)/tmp/extras/contrib/Sparkle
452         cp -R $(CONTRIB_DIR)/Sparkle/Sparkle.framework $(top_builddir)/tmp/extras/contrib/Sparkle
453         mkdir -p $(top_builddir)/tmp/modules/audio_output
454         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
455         for i in \
456             AppleRemote.h \
457             AppleRemote.m \
458             about.h \
459             about.m \
460             applescript.h \
461             applescript.m \
462             controls.h \
463             controls.m \
464             equalizer.h \
465             equalizer.m \
466             intf.h \
467             intf.m \
468             macosx.m \
469             misc.h \
470             misc.m \
471             open.h \
472             open.m \
473             output.h \
474             output.m \
475             playlist.h \
476             playlist.m \
477             playlistinfo.h \
478             playlistinfo.m \
479             prefs_widgets.h \
480             prefs_widgets.m \
481             prefs.h \
482             prefs.m \
483             simple_prefs.h \
484             simple_prefs.m \
485             vout.h \
486             voutgl.m \
487             wizard.h \
488             wizard.m \
489             extended.h \
490             extended.m \
491             bookmarks.h \
492             bookmarks.m \
493             coredialogs.h \
494             coredialogs.m \
495             embeddedwindow.h \
496             embeddedwindow.m \
497             fspanel.h \
498             fspanel.m \
499             vout.m; do \
500           cp "$(srcdir)/modules/gui/macosx/$$i" \
501              $(top_builddir)/tmp/modules/gui/macosx; \
502         done
503         $(AM_V_GEN)cd $(top_builddir)/tmp/extras/package/macosx && \
504         xcodebuild -target vlc SYMROOT=../../../build $(silentstd) && \
505         cd ../../../../ && \
506         cp -R $(top_builddir)/tmp/build/Default/VLC.bundle $(top_builddir)/VLC-release.app; \
507         rm -Rf $(top_builddir)/tmp
508         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS
509         PRODUCT="VLC-release.app" ACTION="release-makefile" src_dir=$(srcdir) build_dir=$(top_builddir) sh $(srcdir)/projects/macosx/framework/Pre-Compile.sh
510         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua
511         for i in $(srcdir)/share/lua/*.* ; do \
512           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/`basename $${i}` ; \
513         done ; \
514         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/playlist
515         for i in $(srcdir)/share/lua/playlist/*.* ; do \
516           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/playlist/`basename $${i}` ; \
517         done ; \
518         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/meta
519         for i in $(srcdir)/share/lua/meta/*.* ; do \
520           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/meta/`basename $${i}` ; \
521         done ; \
522         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/intf
523         for i in $(srcdir)/share/lua/intf/*.* ; do \
524           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/intf/`basename $${i}` ; \
525         done ; \
526         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/intf/modules
527         for i in $(srcdir)/share/lua/intf/modules/*.* ; do \
528           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/intf/modules/`basename $${i}` ; \
529         done ; \
530         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/dialogs
531         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/js
532         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/images
533         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/requests
534         $(INSTALL) -m 644 $(srcdir)/share/lua/http/.hosts $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/.hosts
535         for i in $(srcdir)/share/lua/http/*.* ; do \
536           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/`basename $${i}` ; \
537         done
538         for i in $(srcdir)/share/lua/http/dialogs/* ; do \
539           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/dialogs/`basename $${i}` ; \
540         done
541         for i in $(srcdir)/share/lua/http/js/*.* ; do \
542           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/js/`basename $${i}` ; \
543         done
544         for i in $(srcdir)/share/lua/http/images/*.* ; do \
545           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/images/`basename $${i}` ; \
546         done
547         for i in $(srcdir)/share/lua/http/requests/*.* ; do \
548           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/requests/`basename $${i}` ; \
549         done
550         $(INSTALL) -m 644 $(srcdir)/share/lua/http/requests/README.txt $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/requests/README.txt
551         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs
552         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js
553         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/images
554         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests
555         $(INSTALL) -m 644 $(srcdir)/share/http/.hosts $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/.hosts
556         for i in $(srcdir)/share/http/*.* ; do \
557           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/`basename $${i}` ; \
558         done
559         for i in $(srcdir)/share/http/dialogs/* ; do \
560           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs/`basename $${i}` ; \
561         done
562         for i in $(srcdir)/share/http/js/*.* ; do \
563           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js/`basename $${i}` ; \
564         done
565         for i in $(srcdir)/share/http/images/*.* ; do \
566           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/images/`basename $${i}` ; \
567         done
568         for i in $(srcdir)/share/http/requests/*.* ; do \
569           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests/`basename $${i}` ; \
570         done
571         $(INSTALL) -m 644 $(srcdir)/share/http/requests/README.txt $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests/README.txt
572         $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/locale
573         cat $(top_srcdir)/po/LINGUAS | while read i; do \
574           $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/locale/$${i}/LC_MESSAGES ; \
575           $(INSTALL) $(srcdir)/po/$${i}.gmo $(top_builddir)/VLC-release.app/Contents/MacOS/share/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
576           mkdir -p $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
577           ln -sf ../English.lproj/InfoPlist.strings \
578               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
579           ln -sf ../English.lproj/MainMenu.nib \
580               $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
581         done
582         printf "APPLVLC#" >| $(top_builddir)/VLC-release.app/Contents/PkgInfo
583         find $(top_builddir)/VLC-release.app/Contents/Resources/English.lproj -name designable.nib -delete;
584         find $(top_builddir)/VLC-release.app -type d -exec chmod ugo+rx '{}' \;
585         find $(top_builddir)/VLC-release.app -type f -exec chmod ugo+r '{}' \;
586
587 # This is just for development purposes. 
588 # The resulting VLC.app will only run in this tree.
589 VLC.app: vlc $(top_builddir)/src/.libs/libvlccore.dylib $(top_builddir)/src/.libs/libvlc.dylib
590         $(AM_V_GEN)(cd src && make install $(silentstd))
591         rm -Rf $(top_builddir)/tmp
592         mkdir -p "$(top_builddir)/tmp/extras/package/macosx"
593         rm -Rf $(top_builddir)/VLC.app
594         for i in vlc.xcodeproj Resources README.MacOSX.rtf; do \
595           cp -R $(srcdir)/extras/package/macosx/$$i $(top_builddir)/tmp/extras/package/macosx/; \
596         done
597         REVISION=`(git --git-dir=$(srcdir)/.git describe --always || echo exported)` && \
598         cat $(top_builddir)/extras/package/macosx/Info.plist | \
599         sed "s/#REVISION#/$$REVISION/g" > $(top_builddir)/tmp/extras/package/macosx/Info.plist
600         cp -R $(top_builddir)/extras/package/macosx/Resources $(top_builddir)/tmp/extras/package/macosx/
601         for i in AUTHORS COPYING THANKS; do \
602           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
603         done
604         mkdir -p $(top_builddir)/tmp/extras/contrib/Sparkle
605         cp -R $(CONTRIB_DIR)/Sparkle/Sparkle.framework $(top_builddir)/tmp/extras/contrib/Sparkle
606         mkdir -p $(top_builddir)/tmp/modules/audio_output
607         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
608         for i in \
609             AppleRemote.h \
610             AppleRemote.m \
611             about.h \
612             about.m \
613             applescript.h \
614             applescript.m \
615             controls.h \
616             controls.m \
617             equalizer.h \
618             equalizer.m \
619             intf.h \
620             intf.m \
621             macosx.m \
622             misc.h \
623             misc.m \
624             open.h \
625             open.m \
626             output.h \
627             output.m \
628             playlist.h \
629             playlist.m \
630             playlistinfo.h \
631             playlistinfo.m \
632             prefs_widgets.h \
633             prefs_widgets.m \
634             prefs.h \
635             prefs.m \
636             simple_prefs.h \
637             simple_prefs.m \
638             vout.h \
639             voutgl.m \
640             wizard.h \
641             wizard.m \
642             extended.h \
643             extended.m \
644             bookmarks.h \
645             bookmarks.m \
646             coredialogs.h \
647             coredialogs.m \
648             embeddedwindow.h \
649             embeddedwindow.m \
650             fspanel.h \
651             fspanel.m \
652             vout.m; do \
653           cp "$(srcdir)/modules/gui/macosx/$$i" \
654              $(top_builddir)/tmp/modules/gui/macosx; \
655         done
656         $(AM_V_GEN)cd $(top_builddir)/tmp/extras/package/macosx && \
657         xcodebuild -target vlc SYMROOT=../../../build $(silentstd) && \
658         cd ../../../../ && \
659         cp -R $(top_builddir)/tmp/build/Default/VLC.bundle $(top_builddir)/VLC.app
660         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS
661         touch $(top_builddir)/VLC.app/Contents/MacOS/VLC
662         chmod +x $(top_builddir)/VLC.app/Contents/MacOS/VLC
663         $(INSTALL) $(top_builddir)/bin/.libs/vlc $(top_builddir)/VLC.app/Contents/MacOS/VLC
664         ln -sf ../../../modules $(top_builddir)/VLC.app/Contents/MacOS/plugins
665         install -d $(top_builddir)/VLC.app/Contents/MacOS/share
666         for i in `ls $(srcdir)/share`; do \
667            ln -sf `pwd`/$(srcdir)/share/$$i $(top_builddir)/VLC.app/Contents/MacOS/share/; \
668         done
669         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/share/locale
670         cat $(top_srcdir)/po/LINGUAS | while read i; do \
671           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/share/locale/$${i}/LC_MESSAGES ; \
672           ln -sfn `pwd`/$(srcdir)/po/$${i}.gmo $(top_builddir)/VLC.app/Contents/MacOS/share/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
673           mkdir -p $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
674           ln -sf ../English.lproj/InfoPlist.strings \
675               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
676           ln -sf ../English.lproj/MainMenu.nib \
677               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
678         done
679         printf "APPLVLC#" >| $(top_builddir)/VLC.app/Contents/PkgInfo
680
681 ###############################################################################
682 # Building architecture-specific binary packages
683 ###############################################################################
684
685 # XXX: this rule is probably only useful to you if you have exactly
686 # the same setup as the maintaner(s).
687 #
688
689 ############################################################################
690 ## Win                                                                    ##
691 ############################################################################
692 destdir=$(prefix)
693 win32_destdir=$(top_builddir)/vlc-$(VERSION)
694 win32_debugdir=$(top_builddir)/symbols-$(VERSION)
695 win32_lua_destdir=$(win32_destdir)/lua
696 win32_xpi_destdir=$(win32_destdir)/vlc-plugin
697
698 if HAVE_WIN32
699 include extras/package/npapi.am
700 endif
701
702 #Win-common is for win32 and wince
703 package-win-common: install
704 # Check that tmp isn't in the way
705         @if test -e "$(win32_destdir)"; then \
706             echo "Error: please remove $(win32_destdir), it is in the way"; \
707             false; \
708         elif test -e "$(win32_debugdir)"; then \
709             echo "Error: please remove $(win32_debugdir), it is in the way"; \
710             false; \
711         else \
712             echo "Debug dir OK."; mkdir -p "$(win32_debugdir)"; \
713             echo "Dest dir OK."; mkdir -p "$(win32_destdir)"; \
714         fi
715
716 # Executables, major libs+manifests
717         find $(destdir) -maxdepth 4 \( -name "*$(LIBEXT)" -o -name "*$(EXEEXT)" \) -exec cp {} "$(win32_destdir)/" \;
718         for file in $(top_srcdir)/extras/package/win32/vlc$(EXEEXT).manifest \
719                 $(top_srcdir)/extras/package/win32/libvlc$(LIBEXT).manifest; \
720             do cp $$file "$(win32_destdir)/" ; done;
721
722 # Text files and clean them
723         for file in AUTHORS THANKS ; \
724           do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(win32_destdir)/$${file}.txt" ; done;
725         for file in NEWS COPYING README; \
726           do cp "$(srcdir)/$$file" "$(win32_destdir)/$${file}.txt"; done
727
728 # Necessary icon
729         cp $(srcdir)/share/icons/vlc.ico $(win32_destdir)
730
731 # Locales
732         -cp -r $(destdir)/share/locale $(win32_destdir)
733
734 # Plugins
735         cp -r $(destdir)/lib/vlc/plugins $(win32_destdir)
736
737 if BUILD_LUA
738 # Copy the lua scripts (HTTP)
739         mkdir -p $(win32_lua_destdir)
740         cp -r $(destdir)/share/vlc/lua/http "$(win32_lua_destdir)/http"
741
742 # Lua Scripts - cannot be simplified yet, because make install doesn't install READMEs
743         $(INSTALL) -d $(win32_lua_destdir)
744         for i in $(srcdir)/share/lua/*.* ; do \
745           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/`basename $${i}` ; \
746         done
747         $(INSTALL) -d $(win32_lua_destdir)/modules
748         for i in $(srcdir)/share/lua/modules/*.* ; do \
749           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/modules/`basename $${i}` ; \
750         done
751         $(INSTALL) -d $(win32_lua_destdir)/extensions
752         for i in $(srcdir)/share/lua/extensions/*.* ; do \
753           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/extensions/`basename $${i}` ; \
754         done
755         $(INSTALL) -d $(win32_lua_destdir)/intf
756         for i in $(srcdir)/share/lua/intf/*.* ; do \
757           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/intf/`basename $${i}` ; \
758         done
759         $(INSTALL) -d $(win32_lua_destdir)/intf/modules
760         for i in $(srcdir)/share/lua/intf/modules/*.* ; do \
761           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/intf/modules/`basename $${i}` ; \
762         done
763         $(INSTALL) -d $(win32_lua_destdir)/meta/art
764         for i in $(srcdir)/share/lua/meta/art/*.* ; do \
765           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/meta/art/`basename $${i}` ; \
766         done
767         $(INSTALL) -d $(win32_lua_destdir)/meta/fetcher
768         for i in $(srcdir)/share/lua/meta/fetcher/*.* ; do \
769           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/meta/fetcher/`basename $${i}` ; \
770         done
771         $(INSTALL) -d $(win32_lua_destdir)/meta/reader
772         for i in $(srcdir)/share/lua/meta/reader/*.* ; do \
773           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/meta/reader/`basename $${i}` ; \
774         done
775         $(INSTALL) -d $(win32_lua_destdir)/playlist
776         for i in $(srcdir)/share/lua/playlist/*.* ; do \
777           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/playlist/`basename $${i}` ; \
778         done
779         $(INSTALL) -d $(win32_lua_destdir)/sd
780         for i in $(srcdir)/share/lua/sd/*.* ; do \
781           $(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/sd/`basename $${i}` ; \
782         done
783 endif
784
785 if BUILD_HTTPD
786         cp -r $(destdir)/share/vlc/http $(win32_destdir)
787 endif
788 if BUILD_SKINS
789         cp -r $(destdir)/share/vlc/skins2 $(win32_destdir)/skins
790 endif
791 if BUILD_OSDMENU
792         cp -r $(destdir)/share/vlc/osdmenu "$(win32_destdir)/osdmenu"
793         for file in $(win32_destdir)/osdmenu/*.cfg; do \
794                 sed 's%share/osdmenu%osdmenu%g' "$$file" > "$$file.tmp" || exit $$? ; \
795                 sed 's%/%\\%g' "$$file.tmp" > "$$file" || exit$$? ; \
796                 rm -f -- "$$file.tmp"; \
797         done
798 endif
799         cp $(top_srcdir)/extras/mozilla/src/npvlc.dll.manifest $(win32_destdir)
800 if BUILD_ACTIVEX
801         cp $(top_srcdir)/projects/activex/axvlc.dll.manifest $(win32_destdir)
802 endif
803
804 # SDK
805         mkdir -p "$(win32_destdir)/sdk/lib"
806         cp -r $(destdir)/include "$(win32_destdir)/sdk"
807         cp -r $(destdir)/lib/pkgconfig "$(win32_destdir)/sdk/lib"
808         for file in libvlc.dll.a libvlc.la libvlccore.dll.a libvlccore.la; do \
809         cp -r $(destdir)/lib/$$file "$(win32_destdir)/sdk/lib"; done
810 if BUILD_ACTIVEX
811         mkdir -p "$(win32_destdir)/sdk/activex"
812         cp $(srcdir)/projects/activex/README.TXT $(win32_destdir)/sdk/activex/
813         cp $(srcdir)/projects/activex/test.html $(win32_destdir)/sdk/activex/
814 endif
815
816         find $(win32_destdir) -type f \( -name "*xml" -or -name "*html" -or -name '*js' -or -name '*css' -or -name '*hosts' -or -iname '*txt' -or -name '*.cfg' -or -name '*.lua' \) -exec $(U2D) {} \;
817
818 #Enable DEP and ASLR for all the binaries
819 if USE_PEFLAGS
820         find $(win32_destdir) -type f \( -name '*$(LIBEXT)' -print -o -name '*$(EXEEXT)' -print \) -exec $(PEFLAGS) --dynamicbase=true --nxcompat=true {} \;
821 endif
822
823 # Strip DLLs
824 package-win-base: package-win-common
825         find $(win32_destdir) -type f \( -name '*$(LIBEXT)' -or -name '*$(EXEEXT)' \) | while read i; \
826         do if test -n "$$i" ; then \
827             $(OBJCOPY) --only-keep-debug "$$i" "$$i.dbg"; \
828             $(OBJCOPY) --strip-all "$$i" ; \
829             $(OBJCOPY) --add-gnu-debuglink="$$i.dbg" "$$i" ; \
830             mv "$$i.dbg" "$(win32_debugdir)"; \
831           fi ; \
832         done
833
834 package-win32-webplugin-common: package-win-base build-win-npapi
835         mkdir -p "$(win32_xpi_destdir)/plugins"
836         find $(destdir) -maxdepth 4 -name "*$(LIBEXT)" -exec cp {} "$(win32_xpi_destdir)/" \;
837         cp $(top_srcdir)/extras/mozilla/src/npvlc.dll.manifest "$(win32_xpi_destdir)/plugins"
838         cp "$(top_srcdir)/extras/package/win32/libvlc.dll.manifest" "$(win32_xpi_destdir)/plugins"
839         cp -r $(win32_destdir)/plugins/ "$(win32_xpi_destdir)/plugins"
840         rm -rf "$(win32_xpi_destdir)/plugins/plugins/*qt*"
841         rm -rf "$(win32_xpi_destdir)/plugins/plugins/*skins*"
842
843 package-win32-xpi: package-win32-webplugin-common
844         cp $(top_builddir)/extras/mozilla/src/install.rdf "$(win32_xpi_destdir)"
845         cd $(win32_xpi_destdir) && zip -r "../vlc-$(VERSION).xpi" install.rdf plugins
846
847 package-win32-crx: package-win32-webplugin-common
848         cp $(top_builddir)/extras/mozilla/src/manifest.json "$(win32_xpi_destdir)"
849         crxmake --pack-extension "$(win32_xpi_destdir)" \
850                 --extension-output "$(win32_destdir)/vlc-$(VERSION).crx" --ignore-file install.rdf
851
852 package-win32-base-exe: package-win-base
853 # Script installer
854         cp "$(top_builddir)/extras/package/win32/vlc.win32.nsi" "$(win32_destdir)/"
855         cp "$(top_builddir)/extras/package/win32/spad.nsi" "$(win32_destdir)/"
856         mkdir "$(win32_destdir)/languages"
857         cp $(srcdir)/extras/package/win32/languages/*.nsh "$(win32_destdir)/languages/"
858 # Copy the UAC NSIS plugin
859         mkdir -p "$(win32_destdir)/NSIS"
860         cp "$(top_srcdir)/extras/package/win32/UAC.nsh" "$(win32_destdir)/NSIS"
861         cp "$(top_srcdir)/extras/package/win32/UAC.dll" "$(win32_destdir)/NSIS"
862
863 # Create package
864         if makensis -VERSION >/dev/null 2>&1; then \
865             MAKENSIS="makensis"; \
866         elif [ -x "/cygdrive/c/Program Files/NSIS/makensis" ]; then \
867             MAKENSIS="/cygdrive/c/Program\ Files/NSIS/makensis"; \
868         elif [ -x "$(PROGRAMFILES)/NSIS/makensis" ]; then \
869             MAKENSIS="$(PROGRAMFILES)/NSIS/makensis"; \
870         elif wine --version >/dev/null 2>&1; then \
871             MAKENSIS="wine C:/Program\ Files/NSIS/makensis.exe"; \
872         else \
873             echo 'Error: cannot locate makensis tool'; exit 1; \
874         fi; \
875         eval "$$MAKENSIS $(win32_destdir)/spad.nsi"; \
876         eval "$$MAKENSIS $(win32_destdir)/vlc.win32.nsi"
877
878 package-win32-base-zip: package-win-base
879 # Create package
880         rm -f -- vlc-$(VERSION)-win32.zip
881         zip -r -9 vlc-$(VERSION)-win32.zip vlc-$(VERSION)
882
883 package-win32-base-debug-zip: package-win-common
884 # Create package
885         rm -f -- vlc-$(VERSION)-win32-debug.zip
886         zip -r -9 vlc-$(VERSION)-win32-debug.zip vlc-$(VERSION)
887
888 package-win32-base-7zip: package-win-base
889 # Create package
890         7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on vlc-$(VERSION)-win32.7z vlc-$(VERSION)
891
892 package-win32-base-debug-7zip: package-win-common
893 # Create package
894         7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on vlc-$(VERSION)-win32-debug.7z vlc-$(VERSION)
895
896 package-win32-cleanup:
897         rm -Rf $(win32_destdir) $(win32_debugdir)
898
899 package-win32-exe: package-win-base package-win32-base-exe package-win32-cleanup
900
901 package-win32-zip: package-win32-base-zip package-win32-cleanup
902
903 package-win32-debug-zip: package-win32-base-debug-zip package-win32-cleanup
904
905 package-win32-7zip: package-win32-base-7zip package-win32-cleanup
906
907 package-win32-debug-7zip: package-win32-base-debug-7zip package-win32-cleanup
908
909 package-win32-no-clean: package-win32-base-zip package-win32-base-7zip package-win32-base-exe package-win32-xpi
910
911 package-win32: package-win32-no-clean package-win32-cleanup
912
913 package-win32-debug: package-win32-base-debug-zip package-win32-base-debug-7zip package-win32-cleanup
914
915
916 #######
917 # WinCE
918 #######
919 package-wince-base: package-win-base
920
921 package-wince-base-zip: package-wince-base
922 # Create package
923         rm -f -- vlc-$(VERSION)-wince.zip
924         zip -r -9 vlc-$(VERSION)-wince.zip vlc-$(VERSION)
925
926 package-wince: package-wince-base-zip package-win32-cleanup
927
928
929 #########################################################################
930 ## MacOS X                                                             ##
931 #########################################################################
932 package-macosx: VLC-release.app ChangeLog
933 # Check that the temporary location isn't in the way
934         @if test -e "$(top_builddir)/vlc-$(VERSION)/"; then \
935           rm -Rf "$(top_builddir)/vlc-$(VERSION)/" ; \
936         fi
937
938         echo "Create package directory: vlc-$(VERSION)/";
939         mkdir -p "$(top_builddir)/vlc-$(VERSION)/";
940
941 # Copy relevant files 
942         @if test -e "$(top_builddir)/VLC-release.app/"; then \
943           cp -R "$(top_builddir)/VLC-release.app" "$(top_builddir)/vlc-$(VERSION)/VLC.app"; \
944         else \
945           cp -R "$(top_builddir)/VLC.app" "$(top_builddir)/vlc-$(VERSION)/VLC.app"; \
946         fi
947         mkdir -p $(top_builddir)/vlc-$(VERSION)/Goodies/ && \
948           mkdir -p $(top_builddir)/vlc-$(VERSION)/.background/ && \
949           cp $(srcdir)/AUTHORS $(srcdir)/COPYING $(srcdir)/README $(srcdir)/THANKS $(srcdir)/NEWS $(top_builddir)/vlc-$(VERSION)/Goodies/ && \
950           cp -R  $(srcdir)/extras/package/macosx/Delete_Preferences.app $(top_builddir)/vlc-$(VERSION)/Goodies/Delete\ VLC\ Preferences.app && \
951           cp $(srcdir)/extras/package/macosx/README.MacOSX.rtf $(top_builddir)/vlc-$(VERSION)/Read\ Me.rtf && \
952           cp $(srcdir)/extras/package/macosx/Resources/about_bg.png $(top_builddir)/vlc-$(VERSION)/.background/background.png
953         cp -L $(top_builddir)/ChangeLog $(top_builddir)/vlc-$(VERSION)/Goodies/
954
955 # Place a link to the application folder
956         ln -s /Applications $(top_builddir)/vlc-$(VERSION)/Applications
957
958 # Create disk image (temporarily taken from the 0.8.6-bugfix branch to provide reliable NBs)
959         echo "Creating disk image"
960         rm -f "$(top_builddir)/vlc-$(VERSION).dmg"
961         hdiutil create -verbose -srcfolder "$(top_builddir)/vlc-$(VERSION)" \
962           "$(top_builddir)/vlc-$(VERSION).dmg" -scrub
963         echo "Disk image creation completed:"
964         ls -la "$(top_builddir)/vlc-$(VERSION).dmg" ; echo
965
966 # Create disk image 
967 #       echo "Creating disk image"
968 #       rm -f "$(top_builddir)/vlc-$(VERSION).dmg"
969 #       hdiutil create -verbose -srcfolder "$(top_builddir)/vlc-$(VERSION)" \
970 #         "$(top_builddir)/vlc-$(VERSION).dmg" -format UDRW \
971 #         -scrub -imagekey zlib-level=9 -attach
972
973 # Make sure the root window of the dmg will pop up when the dmg is mounted.
974 # Note: We dont mount in /Volumes to be sure we won't collide with an other
975 # finder mounted dmg with the same name.
976 #       echo "Make sure the root window of the dmg will pop up when the dmg is mounted"
977 #       mkdir -p $(top_builddir)/vlcmnt
978 #       hdiutil attach -nokernel -readwrite -noverify -noautoopen -private "$(top_builddir)/vlc-$(VERSION).dmg" -mountpoint "$(top_builddir)/vlcmnt/vlc-$(VERSION)"
979 #       bless --folder "$(top_builddir)/vlcmnt/vlc-$(VERSION)/" --openfolder "$(top_builddir)/vlcmnt/vlc-$(VERSION)"
980 #       sleep 1 # Make sure operation completes
981 #       cd "$(srcdir)"
982
983 # Unmount the image now
984 #       hdiutil detach "$(top_builddir)/vlcmnt/vlc-$(VERSION)"
985 #       rm -R $(top_builddir)/vlcmnt
986
987 # Make sure the image is not writable
988 # Note: We can't directly create a read only dmg as we do the bless stuff
989         echo "Make the disk image read-only"
990         mv "$(top_builddir)/vlc-$(VERSION).dmg" "$(top_builddir)/vlc-$(VERSION)-rw.dmg"
991         hdiutil convert "$(top_builddir)/vlc-$(VERSION)-rw.dmg" -format UDBZ -o "$(top_builddir)/vlc-$(VERSION).dmg"
992         rm "$(top_builddir)/vlc-$(VERSION)-rw.dmg"
993
994 # We are done
995         echo "Disk image creation completed:"
996         ls -la "$(top_builddir)/vlc-$(VERSION).dmg" ; echo
997
998 # Clean up
999         rm -Rf "$(top_builddir)/vlc-$(VERSION)"
1000
1001 package-macosx-zip: VLC-release.app
1002         rm -Rf $(top_builddir)/vlc-$(VERSION)
1003         mkdir -p $(top_builddir)/vlc-$(VERSION)
1004         cp -R $(top_builddir)/VLC-release.app $(top_builddir)/vlc-$(VERSION)/VLC.app
1005         mkdir -p $(top_builddir)/vlc-$(VERSION)/Goodies
1006         for i in AUTHORS COPYING ChangeLog README THANKS NEWS; do \
1007           cp $(srcdir)/$$i $(top_builddir)/vlc-$(VERSION)/Goodies; \
1008         done
1009         cp -R  $(srcdir)/extras/package/macosx/Delete_Preferences.app \
1010              $(top_builddir)/vlc-$(VERSION)/Goodies
1011         cp $(srcdir)/extras/package/macosx/README.MacOSX.rtf \
1012            $(top_builddir)/vlc-$(VERSION)/Read\ Me.rtf
1013         zip -r -y -9 $(top_builddir)/vlc-$(VERSION).zip $(top_builddir)/vlc-$(VERSION)
1014         rm -Rf $(top_builddir)/vlc-$(VERSION)
1015
1016 package-macosx-framework-zip:
1017         rm -Rf $(top_builddir)/vlckit-$(VERSION)
1018         mkdir -p $(top_builddir)/vlckit-$(VERSION)
1019         cp -R $(srcdir)/projects/macosx/framework/build/Debug/VLCKit.framework \
1020           $(top_builddir)/vlckit-$(VERSION)/VLCKit.framework
1021         mkdir -p $(top_builddir)/vlc-$(VERSION)/Goodies
1022         for i in AUTHORS COPYING ChangeLog README THANKS NEWS; do \
1023           cp $(srcdir)/$$i $(top_builddir)/vlckit-$(VERSION)/Goodies; \
1024         done
1025         zip -r -y -9 $(top_builddir)/vlckit-$(VERSION).zip $(top_builddir)/vlckit-$(VERSION)
1026         rm -Rf $(top_builddir)/vlc-$(VERSION)
1027
1028 package-translations:
1029         @if test -e "$(srcdir)/vlc-translations-$(VERSION)"; then \
1030           echo "Error: please remove $(srcdir)/vlc-translations-$(VERSION), it is in the way"; \
1031           false; \
1032         else \
1033           echo "OK."; mkdir -p "$(srcdir)/vlc-translations-$(VERSION)"; \
1034         fi
1035 # Copy translations
1036         cat $(top_srcdir)/po/LINGUAS | while read i; do \
1037           cp "$(srcdir)/po/$${i}.po" \
1038             "$(srcdir)/vlc-translations-$(VERSION)/$${i}.po" \
1039             || true ; \
1040         done
1041         cp "$(srcdir)/doc/translations.txt" \
1042           "$(srcdir)/vlc-translations-$(VERSION)/README.txt"
1043
1044         echo "#!/bin/sh" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
1045         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
1046         echo 'if test $$# != 1; then' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
1047         echo "  echo \"Usage: convert-po.sh <.po file>\"" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
1048         echo "  exit 1" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
1049         echo "fi" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
1050         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
1051         echo 'msgfmt --statistics -o vlc.mo $$1' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
1052
1053         $(AMTAR) chof - $(srcdir)/vlc-translations-$(VERSION) \
1054           | GZIP=$(GZIP_ENV) gzip -c >$(srcdir)/vlc-translations-$(VERSION).tar.gz
1055
1056 ###############################################################################
1057 # PO translation files update
1058 ###############################################################################
1059 .PHONY: update-po
1060
1061 update-po:
1062         cd po && $(MAKE) POTFILES vlc.pot update-po
1063
1064
1065 ###############################################################################
1066 # Enforce Mac OS X deployment target environment variable
1067 ###############################################################################
1068 macosx-sdk: Makefile.in $(HEADERS_include) vlc-config
1069         export MACOSX_DEPLOYMENT_TARGET=$(MACOSX_DEPLOYMENT_TARGET)