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