2002-09-30 19:05:42 +08:00
|
|
|
###############################################################################
|
|
|
|
# Automake targets and declarations
|
|
|
|
###############################################################################
|
2002-08-26 07:18:05 +08:00
|
|
|
|
2002-09-30 19:05:42 +08:00
|
|
|
# SUBDIRS stores the directories where a "make" is required when building
|
|
|
|
# something. DIST_SUBDIRS stores the directories where nothing is built but
|
|
|
|
# which have makefiles with distribution information.
|
2007-05-20 01:47:15 +08:00
|
|
|
# - src (libvlc) is nedeed by modules, mozilla and bindings
|
|
|
|
# - libs/* are needed by modules
|
2009-04-11 01:14:10 +08:00
|
|
|
BASE_SUBDIRS = po compat src bin modules share doc test
|
2008-05-04 20:40:27 +08:00
|
|
|
EXTRA_SUBDIRS = m4 extras/package/ipkg \
|
2009-01-19 02:27:56 +08:00
|
|
|
libs/loader libs/srtp libs/unzip \
|
2008-05-04 20:40:27 +08:00
|
|
|
projects/mozilla projects/activex
|
2008-05-11 01:16:58 +08:00
|
|
|
DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
|
2008-05-04 20:40:27 +08:00
|
|
|
|
2009-04-11 01:14:10 +08:00
|
|
|
SUBDIRS = po compat src
|
2008-05-04 20:51:15 +08:00
|
|
|
if LOADER
|
|
|
|
SUBDIRS += libs/loader
|
|
|
|
endif
|
|
|
|
if HAVE_LIBGCRYPT
|
|
|
|
SUBDIRS += libs/srtp
|
|
|
|
endif
|
2009-01-19 02:27:56 +08:00
|
|
|
if HAVE_ZLIB
|
2009-02-11 17:46:53 +08:00
|
|
|
if !HAVE_MINIZIP
|
2009-01-19 02:27:56 +08:00
|
|
|
SUBDIRS += libs/unzip
|
|
|
|
endif
|
2009-02-11 17:46:53 +08:00
|
|
|
endif
|
2008-08-24 17:42:39 +08:00
|
|
|
if BUILD_VLC
|
|
|
|
SUBDIRS += bin
|
|
|
|
endif
|
2008-05-04 20:51:15 +08:00
|
|
|
SUBDIRS += modules share doc test
|
2008-05-04 20:40:27 +08:00
|
|
|
if BUILD_MOZILLA
|
|
|
|
SUBDIRS += projects/mozilla
|
|
|
|
endif
|
|
|
|
if BUILD_ACTIVEX
|
2008-06-09 01:51:57 +08:00
|
|
|
SUBDIRS += projects/activex
|
2008-05-04 20:40:27 +08:00
|
|
|
endif
|
2002-08-26 07:18:05 +08:00
|
|
|
|
2003-03-26 07:32:00 +08:00
|
|
|
EXTRA_DIST = \
|
|
|
|
HACKING \
|
|
|
|
INSTALL.win32 \
|
2005-10-01 19:15:36 +08:00
|
|
|
INSTALL.wince \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/win32/vlc.exe.manifest \
|
2008-11-25 06:06:47 +08:00
|
|
|
extras/package/win32/libvlc.dll.manifest \
|
2003-03-26 07:32:00 +08:00
|
|
|
MAINTAINERS \
|
2008-02-04 09:28:24 +08:00
|
|
|
extras/package/macosx/README.MacOSX.rtf \
|
2003-06-27 21:50:13 +08:00
|
|
|
vlc-config.in.in \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/rpm/vlc.fedora.spec \
|
|
|
|
extras/package/rpm/vlc.altlinux.spec \
|
2008-08-06 16:27:35 +08:00
|
|
|
extras/package/win32/vlc.win32.nsi.in \
|
|
|
|
extras/package/win32/languages/declaration.nsh \
|
|
|
|
extras/package/win32/languages/english.nsh \
|
|
|
|
extras/package/win32/languages/french.nsh
|
2003-03-26 07:32:00 +08:00
|
|
|
|
2007-08-15 23:45:12 +08:00
|
|
|
dist_noinst_SCRIPTS = bootstrap toolbox
|
2008-11-17 08:18:48 +08:00
|
|
|
nodist_noinst_SCRIPTS = compile
|
2007-08-15 23:45:12 +08:00
|
|
|
|
2008-11-17 08:18:48 +08:00
|
|
|
BUILT_SOURCES_distclean = vlc-config extras/package/win32/vlc.win32.nsi
|
2007-08-10 18:49:12 +08:00
|
|
|
if HAVE_DARWIN
|
2006-02-19 21:11:21 +08:00
|
|
|
BUILT_SOURCES_clean = macosx-sdk
|
2007-08-10 18:49:12 +08:00
|
|
|
else
|
|
|
|
BUILT_SOURCES_clean =
|
|
|
|
endif
|
2005-08-20 00:06:54 +08:00
|
|
|
|
2005-08-23 03:00:19 +08:00
|
|
|
BUILT_SOURCES = $(BUILT_SOURCES_distclean) $(BUILT_SOURCES_clean)
|
2005-08-22 21:09:25 +08:00
|
|
|
|
2002-09-30 19:05:42 +08:00
|
|
|
SUFFIXES =
|
|
|
|
|
2008-06-01 16:57:22 +08:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
|
|
--enable-fast-install \
|
2008-07-02 01:34:57 +08:00
|
|
|
--disable-dbus \
|
2008-06-01 16:57:22 +08:00
|
|
|
--disable-dvd --disable-mad --disable-libmpeg2 \
|
2008-04-01 00:15:20 +08:00
|
|
|
--disable-ffmpeg --disable-faad --disable-wxwidgets --disable-skins2 \
|
2008-08-02 18:16:29 +08:00
|
|
|
--disable-live555 \
|
2008-05-28 01:12:40 +08:00
|
|
|
--disable-fribidi --disable-glx
|
2005-12-06 20:34:02 +08:00
|
|
|
|
2002-09-30 19:05:42 +08:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2008-02-01 01:20:11 +08:00
|
|
|
AUTOMAKE_OPTIONS = \
|
|
|
|
1.9 \
|
|
|
|
-Wall \
|
|
|
|
check-news \
|
|
|
|
dist-bzip2 \
|
|
|
|
no-dist-gzip
|
2008-02-08 08:20:06 +08:00
|
|
|
# std-options
|
2002-09-30 19:05:42 +08:00
|
|
|
|
2008-03-31 22:39:14 +08:00
|
|
|
ChangeLog: Makefile.am
|
|
|
|
rm -f -- "$@"
|
2008-06-01 15:37:56 +08:00
|
|
|
cd doc && $(MAKE) $(AM_MAKEFLAGS) changelogs
|
2009-02-24 08:30:13 +08:00
|
|
|
ln -sf doc/ChangeLog-2009 "$@"
|
2008-03-31 22:39:14 +08:00
|
|
|
|
2002-09-30 19:05:42 +08:00
|
|
|
###############################################################################
|
|
|
|
# MacOS X project
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
EXTRA_DIST += \
|
2009-05-22 05:50:14 +08:00
|
|
|
extras/package/macosx/Resources/English.lproj/MainMenu.nib/designable.nib \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib \
|
2008-04-09 06:40:36 +08:00
|
|
|
extras/package/macosx/Resources/English.lproj/MediaInfo.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/MediaInfo.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/MediaInfo.nib/keyedobjects.nib \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/English.lproj/About.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/About.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/About.nib/keyedobjects.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Open.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Open.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Open.nib/keyedobjects.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Preferences.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Preferences.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Preferences.nib/keyedobjects.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Wizard.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Wizard.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Wizard.nib/keyedobjects.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Bookmarks.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Bookmarks.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Bookmarks.nib/keyedobjects.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Extended.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Extended.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Extended.nib/keyedobjects.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Update.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Update.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/Update.nib/keyedobjects.nib \
|
2009-04-08 05:14:26 +08:00
|
|
|
extras/package/macosx/Resources/English.lproj/CoreDialogs.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/CoreDialogs.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/CoreDialogs.nib/keyedobjects.nib \
|
2009-04-08 05:27:58 +08:00
|
|
|
extras/package/macosx/Resources/English.lproj/ErrorPanel.nib/classes.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/ErrorPanel.nib/info.nib \
|
|
|
|
extras/package/macosx/Resources/English.lproj/ErrorPanel.nib/keyedobjects.nib \
|
2008-07-28 03:52:40 +08:00
|
|
|
extras/package/macosx/Resources/English.lproj/InfoPlist.strings.in \
|
2009-05-21 20:17:18 +08:00
|
|
|
extras/package/macosx/Resources/aiff.icns \
|
|
|
|
extras/package/macosx/Resources/audio.icns \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/avi.icns \
|
2009-05-21 20:17:18 +08:00
|
|
|
extras/package/macosx/Resources/flv.icns \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/generic.icns \
|
2009-05-21 20:17:18 +08:00
|
|
|
extras/package/macosx/Resources/m4a.icns \
|
|
|
|
extras/package/macosx/Resources/m4v.icns \
|
|
|
|
extras/package/macosx/Resources/mkv.icns \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/mov.icns \
|
2009-05-21 20:17:18 +08:00
|
|
|
extras/package/macosx/Resources/movie.icns \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/mp3.icns \
|
|
|
|
extras/package/macosx/Resources/mpeg.icns \
|
|
|
|
extras/package/macosx/Resources/ogg.icns \
|
2009-05-21 20:17:18 +08:00
|
|
|
extras/package/macosx/Resources/playlist.icns \
|
|
|
|
extras/package/macosx/Resources/rm.icns \
|
|
|
|
extras/package/macosx/Resources/subtitle.icns \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/vob.icns \
|
2009-05-21 20:17:18 +08:00
|
|
|
extras/package/macosx/Resources/wav.icns \
|
|
|
|
extras/package/macosx/Resources/vlc.icns \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/wma.icns \
|
|
|
|
extras/package/macosx/Resources/wmv.icns \
|
|
|
|
extras/package/macosx/Resources/pause.png \
|
|
|
|
extras/package/macosx/Resources/pause_blue.png \
|
|
|
|
extras/package/macosx/Resources/play.png \
|
|
|
|
extras/package/macosx/Resources/play_blue.png \
|
|
|
|
extras/package/macosx/Resources/stop.png \
|
|
|
|
extras/package/macosx/Resources/stop_blue.png \
|
2008-04-09 06:40:36 +08:00
|
|
|
extras/package/macosx/Resources/display_left.png \
|
|
|
|
extras/package/macosx/Resources/display_middle.png \
|
|
|
|
extras/package/macosx/Resources/display_right.png \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/Resources/display_slider.png \
|
|
|
|
extras/package/macosx/Resources/display_track.png \
|
|
|
|
extras/package/macosx/Resources/equalizerdrawer_active.png \
|
|
|
|
extras/package/macosx/Resources/equalizerdrawer_blue.png \
|
|
|
|
extras/package/macosx/Resources/fullscreen_active.png \
|
|
|
|
extras/package/macosx/Resources/fullscreen_blue.png \
|
|
|
|
extras/package/macosx/Resources/next_active.png \
|
|
|
|
extras/package/macosx/Resources/next_blue.png \
|
|
|
|
extras/package/macosx/Resources/playlistdrawer_active.png \
|
|
|
|
extras/package/macosx/Resources/playlistdrawer_blue.png \
|
|
|
|
extras/package/macosx/Resources/previous_active.png \
|
|
|
|
extras/package/macosx/Resources/previous_blue.png \
|
|
|
|
extras/package/macosx/Resources/skip_forward_active.png \
|
|
|
|
extras/package/macosx/Resources/skip_forward_blue.png \
|
|
|
|
extras/package/macosx/Resources/skip_previous_active.png \
|
|
|
|
extras/package/macosx/Resources/skip_previous_blue.png \
|
|
|
|
extras/package/macosx/Resources/volume_high.png \
|
|
|
|
extras/package/macosx/Resources/volume_low.png \
|
|
|
|
extras/package/macosx/Resources/volumeslider_blue.png \
|
|
|
|
extras/package/macosx/Resources/volumeslider_normal.png \
|
|
|
|
extras/package/macosx/Resources/volumetrack.png \
|
|
|
|
extras/package/macosx/Resources/about_bg.png \
|
|
|
|
extras/package/macosx/Resources/skip_forward_active_embedded.png \
|
|
|
|
extras/package/macosx/Resources/play_embedded.png \
|
|
|
|
extras/package/macosx/Resources/pause_embedded.png \
|
|
|
|
extras/package/macosx/Resources/skip_previous_active_embedded.png \
|
|
|
|
extras/package/macosx/Resources/pause_embedded_blue.png \
|
|
|
|
extras/package/macosx/Resources/play_embedded_blue.png \
|
|
|
|
extras/package/macosx/Resources/skip_forward_embedded_blue.png \
|
|
|
|
extras/package/macosx/Resources/skip_previous_embedded_blue.png \
|
|
|
|
extras/package/macosx/Resources/vlc.scriptSuite \
|
|
|
|
extras/package/macosx/Resources/vlc.scriptTerminology \
|
|
|
|
extras/package/macosx/Resources/README \
|
|
|
|
extras/package/macosx/Resources/add_embedded.png \
|
|
|
|
extras/package/macosx/Resources/add_embedded_blue.png \
|
|
|
|
extras/package/macosx/Resources/repeat_embedded.png \
|
|
|
|
extras/package/macosx/Resources/repeat_embedded_blue.png \
|
|
|
|
extras/package/macosx/Resources/repeat_single_embedded_blue.png \
|
|
|
|
extras/package/macosx/Resources/shuffle_embedded.png \
|
|
|
|
extras/package/macosx/Resources/shuffle_embedded_blue.png \
|
|
|
|
extras/package/macosx/Resources/fs_volume_slider_knob_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_volume_slider_knob.png \
|
|
|
|
extras/package/macosx/Resources/fs_volume_slider_bar.png \
|
|
|
|
extras/package/macosx/Resources/fs_volume_mute_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_volume_mute.png \
|
|
|
|
extras/package/macosx/Resources/fs_volume_max_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_volume_max.png \
|
|
|
|
extras/package/macosx/Resources/fs_time_slider_knob_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_time_slider_knob.png \
|
|
|
|
extras/package/macosx/Resources/fs_time_slider.png \
|
|
|
|
extras/package/macosx/Resources/fs_stop_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_stop.png \
|
|
|
|
extras/package/macosx/Resources/fs_skip_previous_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_skip_previous.png \
|
|
|
|
extras/package/macosx/Resources/fs_skip_next_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_skip_next.png \
|
|
|
|
extras/package/macosx/Resources/fs_rewind_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_rewind.png \
|
|
|
|
extras/package/macosx/Resources/fs_play_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_play.png \
|
|
|
|
extras/package/macosx/Resources/fs_pause_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_pause.png \
|
|
|
|
extras/package/macosx/Resources/fs_forward_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_forward.png \
|
|
|
|
extras/package/macosx/Resources/fs_exit_fullscreen_highlight.png \
|
|
|
|
extras/package/macosx/Resources/fs_exit_fullscreen.png \
|
|
|
|
extras/package/macosx/Resources/fs_background.png \
|
2008-04-09 06:40:36 +08:00
|
|
|
extras/package/macosx/Resources/add_embedded_graphite.png \
|
|
|
|
extras/package/macosx/Resources/equalizerdrawer_graphite.png \
|
|
|
|
extras/package/macosx/Resources/fullscreen_graphite.png \
|
|
|
|
extras/package/macosx/Resources/next_graphite.png \
|
|
|
|
extras/package/macosx/Resources/pause_embedded_graphite.png \
|
|
|
|
extras/package/macosx/Resources/pause_graphite.png \
|
|
|
|
extras/package/macosx/Resources/play_embedded_graphite.png \
|
|
|
|
extras/package/macosx/Resources/play_graphite.png \
|
|
|
|
extras/package/macosx/Resources/playlistdrawer_graphite.png \
|
|
|
|
extras/package/macosx/Resources/previous_graphite.png \
|
|
|
|
extras/package/macosx/Resources/repeat_embedded_graphite.png \
|
|
|
|
extras/package/macosx/Resources/repeat_single_embedded_graphite.png \
|
|
|
|
extras/package/macosx/Resources/shuffle_embedded_graphite.png \
|
|
|
|
extras/package/macosx/Resources/skip_forward_embedded_graphite.png \
|
|
|
|
extras/package/macosx/Resources/skip_forward_graphite.png \
|
|
|
|
extras/package/macosx/Resources/skip_previous_embedded_graphite.png \
|
|
|
|
extras/package/macosx/Resources/skip_previous_graphite.png \
|
|
|
|
extras/package/macosx/Resources/stop_graphite.png \
|
|
|
|
extras/package/macosx/Resources/volumeslider_graphite.png \
|
2009-05-22 05:09:13 +08:00
|
|
|
extras/package/macosx/Resources/backward_big_down.png \
|
|
|
|
extras/package/macosx/Resources/backward_big.png \
|
|
|
|
extras/package/macosx/Resources/eq_sm.pdf \
|
|
|
|
extras/package/macosx/Resources/forward_big_down.png \
|
|
|
|
extras/package/macosx/Resources/forward_big.png \
|
|
|
|
extras/package/macosx/Resources/fs_sm.pdf \
|
|
|
|
extras/package/macosx/Resources/list_sm.pdf \
|
|
|
|
extras/package/macosx/Resources/next_sm.pdf \
|
|
|
|
extras/package/macosx/Resources/pause_big_down.png \
|
|
|
|
extras/package/macosx/Resources/pause_big.png \
|
|
|
|
extras/package/macosx/Resources/play_big_down.png \
|
|
|
|
extras/package/macosx/Resources/play_big.png \
|
|
|
|
extras/package/macosx/Resources/prev_sm.pdf \
|
|
|
|
extras/package/macosx/Resources/sidebarAdd.png \
|
|
|
|
extras/package/macosx/Resources/sidebarRepeat.png \
|
|
|
|
extras/package/macosx/Resources/sidebarRepeatOn.png \
|
|
|
|
extras/package/macosx/Resources/sidebarRepeatOneOn.png \
|
|
|
|
extras/package/macosx/Resources/sidebarResizeWidget.png \
|
|
|
|
extras/package/macosx/Resources/sidebarShuffle.png \
|
|
|
|
extras/package/macosx/Resources/sidebarShuffleOn.png \
|
|
|
|
extras/package/macosx/Resources/sidebarStatusAreaBackground.png \
|
|
|
|
extras/package/macosx/Resources/stop_sm.pdf \
|
2008-04-09 06:40:36 +08:00
|
|
|
extras/package/macosx/Resources/noart.png \
|
|
|
|
extras/package/macosx/Resources/spref_cone_Audio_64.png \
|
|
|
|
extras/package/macosx/Resources/spref_cone_Hotkeys_64.png \
|
|
|
|
extras/package/macosx/Resources/spref_cone_Input_64.png \
|
|
|
|
extras/package/macosx/Resources/spref_cone_Interface_64.png \
|
|
|
|
extras/package/macosx/Resources/spref_cone_Subtitles_64.png \
|
|
|
|
extras/package/macosx/Resources/spref_cone_Video_64.png \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/fullscreen_panel.svg \
|
|
|
|
extras/package/macosx/ub.sh \
|
|
|
|
extras/package/macosx/vlc.xcodeproj/project.pbxproj \
|
|
|
|
extras/package/macosx/Delete_Preferences.app/Contents/Info.plist \
|
|
|
|
extras/package/macosx/Delete_Preferences.app/Contents/PkgInfo \
|
|
|
|
extras/package/macosx/Delete_Preferences.app/Contents/MacOS/applet \
|
|
|
|
extras/package/macosx/Delete_Preferences.app/Contents/Resources/description.rtfd/TXT.rtf \
|
|
|
|
extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.icns \
|
|
|
|
extras/package/macosx/Delete_Preferences.app/Contents/Resources/applet.rsrc \
|
|
|
|
extras/package/macosx/Delete_Preferences.app/Contents/Resources/Scripts/main.scpt \
|
2008-07-28 03:52:40 +08:00
|
|
|
extras/package/macosx/plugin/Info.plist.in \
|
|
|
|
extras/package/macosx/plugin/InstallerInfo.plist.in \
|
2008-02-04 09:17:33 +08:00
|
|
|
extras/package/macosx/plugin/InstallerDescription.plist \
|
|
|
|
extras/package/macosx/plugin/pbdevelopment.plist \
|
2008-04-09 06:40:36 +08:00
|
|
|
extras/package/macosx/eyetvplugin/EyeTVPluginDefs.h \
|
|
|
|
extras/package/macosx/eyetvplugin/Info.plist \
|
|
|
|
extras/package/macosx/eyetvplugin/eyetvplugin.c \
|
|
|
|
extras/package/macosx/eyetvplugin/eyetvplugin.h \
|
|
|
|
extras/package/macosx/eyetvplugin/English.lproj/InfoPlist.strings \
|
|
|
|
extras/package/macosx/eyetvplugin/eyetvplugin.xcodeproj/project.pbxproj \
|
2008-06-20 06:14:25 +08:00
|
|
|
extras/package/macosx/README.MacOSX.rtf \
|
2008-07-28 03:52:40 +08:00
|
|
|
extras/package/macosx/Info.plist.in
|
2008-04-09 06:40:36 +08:00
|
|
|
|
2006-03-10 22:03:58 +08:00
|
|
|
|
|
|
|
###############################################################################
|
2006-11-20 18:34:33 +08:00
|
|
|
# Various utilities ( editor syntax files, D-Bus controller ... )
|
2006-03-10 22:03:58 +08:00
|
|
|
##############################################################################
|
|
|
|
EXTRA_DIST += \
|
2008-02-11 03:28:36 +08:00
|
|
|
extras/analyser/zsh_completion.sh \
|
2008-02-04 20:03:17 +08:00
|
|
|
extras/analyser/zsh.cpp \
|
|
|
|
extras/analyser/emacs.init \
|
|
|
|
extras/analyser/vlc.vim \
|
|
|
|
extras/analyser/valgrind.suppressions \
|
2008-02-04 21:44:44 +08:00
|
|
|
extras/buildsystem/make.pl \
|
2008-02-04 20:03:17 +08:00
|
|
|
extras/misc/mpris.py \
|
|
|
|
extras/misc/mpris.glade
|
2002-11-10 00:34:53 +08:00
|
|
|
|
2003-04-25 00:13:38 +08:00
|
|
|
dist-hook:
|
2005-08-13 22:15:09 +08:00
|
|
|
distdir=$(distdir) srcdir=$(srcdir) $(SHELL) $(srcdir)/toolbox --dist-contrib
|
2003-04-25 00:13:38 +08:00
|
|
|
|
2002-09-30 19:05:42 +08:00
|
|
|
###############################################################################
|
|
|
|
# Building libvlc
|
|
|
|
###############################################################################
|
|
|
|
|
2008-05-09 23:36:06 +08:00
|
|
|
noinst_SCRIPTS = vlc-config
|
2005-02-07 00:02:24 +08:00
|
|
|
vlc-config: $(top_builddir)/config.status $(top_builddir)/vlc-config.in
|
2006-02-19 17:52:55 +08:00
|
|
|
$(SHELL) ./config.status --file=$@
|
|
|
|
chmod 0755 $@
|
2006-06-05 02:43:05 +08:00
|
|
|
touch $@
|
2002-09-30 19:05:42 +08:00
|
|
|
|
2005-08-13 03:17:33 +08:00
|
|
|
vlc-config.in: vlc-config.in.in
|
|
|
|
./config.status --recheck
|
2006-06-05 02:43:05 +08:00
|
|
|
touch $@
|
2005-08-13 03:17:33 +08:00
|
|
|
|
2008-04-22 03:36:29 +08:00
|
|
|
CLEANFILES = $(BUILT_SOURCES_clean)
|
2009-05-17 01:01:04 +08:00
|
|
|
DISTCLEANFILES = $(BUILT_SOURCES_distclean) vlc-config.in compile
|
|
|
|
MAINTAINERCLEANFILES = ChangeLog
|
2005-03-02 05:24:25 +08:00
|
|
|
|
2007-12-10 05:36:32 +08:00
|
|
|
# Shortcut for developpers to rebuild the core (libvlc + vlc)
|
|
|
|
# Don't use it if you don't know what it is about.
|
|
|
|
# Don't complain if it doesn't work. -- Courmisch
|
2009-05-23 19:59:26 +08:00
|
|
|
libcompat:
|
|
|
|
cd compat && $(MAKE) $(AM_MAKEFLAGS)
|
|
|
|
|
|
|
|
libvlc: libcompat
|
2008-08-24 23:26:47 +08:00
|
|
|
cd src && $(MAKE) $(AM_MAKEFLAGS) libvlc.la
|
2007-12-10 05:36:32 +08:00
|
|
|
|
2008-08-24 17:42:39 +08:00
|
|
|
core: libvlc
|
|
|
|
cd bin && $(MAKE) $(AM_MAKEFLAGS) vlc$(EXEEXT)
|
2006-03-11 02:10:45 +08:00
|
|
|
|
2008-08-14 00:04:54 +08:00
|
|
|
doc:
|
|
|
|
cd doc && $(MAKE) $(AM_MAKEFLAGS) doc
|
|
|
|
|
|
|
|
.PHONY: libvlc core doc
|
2006-02-21 02:00:28 +08:00
|
|
|
|
2007-09-01 06:31:04 +08:00
|
|
|
#To get some nice output
|
|
|
|
nice:
|
2007-09-19 06:20:10 +08:00
|
|
|
$(top_builddir)/compile
|
2007-09-01 06:31:04 +08:00
|
|
|
|
2002-09-30 19:05:42 +08:00
|
|
|
if HAVE_BEOS
|
2006-02-21 19:02:38 +08:00
|
|
|
noinst_DATA = vlc-bundle
|
2004-07-23 06:59:50 +08:00
|
|
|
vlc-bundle: vlc
|
2004-08-21 18:46:32 +08:00
|
|
|
rm -Rf $(top_builddir)/vlc-bundle ; mkdir -p $(top_builddir)/vlc-bundle
|
|
|
|
cp $(top_builddir)/vlc $(top_builddir)/vlc-bundle/
|
|
|
|
xres -o $(top_builddir)/vlc-bundle/vlc $(srcdir)/share/vlc_beos.rsrc
|
2004-07-23 06:59:50 +08:00
|
|
|
for i in "" `$(VLC_CONFIG) --target plugin` ; do \
|
|
|
|
if test -n "$$i" ; then \
|
2004-08-21 18:46:32 +08:00
|
|
|
mkdir -p $(top_builddir)/vlc-bundle/plugins ; \
|
|
|
|
cp "$$i$(LIBEXT)" $(top_builddir)/vlc-bundle/plugins/ ; \
|
2004-07-23 06:59:50 +08:00
|
|
|
fi ; \
|
|
|
|
done
|
2004-08-21 18:46:32 +08:00
|
|
|
if test -d $(top_builddir)/extras/contrib/vlc-lib ; then \
|
|
|
|
mkdir -p $(top_builddir)/vlc-bundle/lib ; \
|
|
|
|
for i in $(top_builddir)/extras/contrib/vlc-lib/*.so ; do \
|
|
|
|
cp $$i $(top_builddir)/vlc-bundle/lib/ ; \
|
2004-07-23 06:59:50 +08:00
|
|
|
done ; \
|
|
|
|
fi
|
2007-09-18 23:16:31 +08:00
|
|
|
cat $(top_srcdir)/po/LINGUAS | while read i; do \
|
2008-07-29 04:22:00 +08:00
|
|
|
mkdir -p "$(top_builddir)/vlc-bundle/share/locale/$$i/LC_MESSAGES" ; \
|
2004-08-21 18:46:32 +08:00
|
|
|
cp "$(top_builddir)/po/$$i.gmo" \
|
2008-07-29 04:22:00 +08:00
|
|
|
"$(top_builddir)/vlc-bundle/share/locale/$$i/LC_MESSAGES/vlc.mo" || true ; \
|
2003-04-18 23:25:51 +08:00
|
|
|
done
|
2004-08-21 18:46:32 +08:00
|
|
|
find $(top_builddir)/vlc-bundle -type f -exec mimeset -f "{}" \;
|
2002-09-30 19:05:42 +08:00
|
|
|
endif
|
|
|
|
|
2007-12-10 05:36:32 +08:00
|
|
|
###############################################################################
|
|
|
|
# Building aliases
|
|
|
|
###############################################################################
|
|
|
|
|
2008-06-28 00:55:15 +08:00
|
|
|
ALL_ALIASES = cvlc rvlc svlc wxvlc qvlc nvlc mvlc
|
2008-05-10 00:12:45 +08:00
|
|
|
bin_SCRIPTS = $(ALIASES)
|
2008-06-01 16:57:22 +08:00
|
|
|
CLEANFILES += $(ALIASES) $(noinst_SCRIPTS)
|
2007-12-10 05:36:32 +08:00
|
|
|
EXTRA_SCRIPTS = $(ALL_ALIASES)
|
|
|
|
|
|
|
|
dist_noinst_SCRIPTS += make-alias
|
|
|
|
|
2008-05-26 06:11:33 +08:00
|
|
|
MKALIAS = bindir="$(bindir)" transform="$(transform)" program_prefix="$(program_prefix)" program_suffix="$(program_suffix)" $(top_srcdir)/make-alias $@
|
2007-12-10 05:36:32 +08:00
|
|
|
|
2008-12-26 17:48:45 +08:00
|
|
|
cvlc: make-alias Makefile
|
2007-12-10 05:36:32 +08:00
|
|
|
$(MKALIAS) dummy
|
|
|
|
|
2008-12-26 17:48:45 +08:00
|
|
|
rvlc: make-alias Makefile
|
2007-12-10 05:36:32 +08:00
|
|
|
$(MKALIAS) rc
|
|
|
|
|
2008-12-26 17:48:45 +08:00
|
|
|
svlc: make-alias Makefile
|
2007-12-10 05:36:32 +08:00
|
|
|
$(MKALIAS) skins2
|
|
|
|
|
2008-12-26 17:48:45 +08:00
|
|
|
wxvlc: make-alias Makefile
|
2007-12-10 05:36:32 +08:00
|
|
|
$(MKALIAS) wx
|
|
|
|
|
2008-12-26 17:48:45 +08:00
|
|
|
qvlc: make-alias Makefile
|
2007-12-10 05:36:32 +08:00
|
|
|
$(MKALIAS) qt4
|
|
|
|
|
2008-12-26 17:48:45 +08:00
|
|
|
nvlc: make-alias Makefile
|
2007-12-10 05:36:32 +08:00
|
|
|
$(MKALIAS) ncurses
|
2005-06-25 13:39:06 +08:00
|
|
|
|
2008-12-26 17:48:45 +08:00
|
|
|
mvlc: make-alias Makefile
|
2008-06-28 00:55:15 +08:00
|
|
|
$(MKALIAS) maemo
|
|
|
|
|
2008-03-19 21:18:09 +08:00
|
|
|
if BUILD_VLC
|
2008-05-11 01:36:34 +08:00
|
|
|
noinst_SCRIPTS += vlc$(EXEEXT)
|
2008-03-19 21:18:09 +08:00
|
|
|
endif
|
2008-02-26 03:52:09 +08:00
|
|
|
|
2009-02-28 22:14:44 +08:00
|
|
|
vlc$(EXEEXT):
|
|
|
|
ln -sf bin/vlc-static$(EXEEXT) vlc$(EXEEXT)
|
2008-02-26 01:50:59 +08:00
|
|
|
|
2002-09-30 19:05:42 +08:00
|
|
|
if HAVE_DARWIN
|
2008-03-19 21:18:09 +08:00
|
|
|
if BUILD_VLC
|
2008-05-23 00:10:10 +08:00
|
|
|
# Create the MacOS X app
|
2008-02-02 22:07:33 +08:00
|
|
|
noinst_DATA = VLC.app
|
2008-03-19 21:18:09 +08:00
|
|
|
endif
|
2008-05-23 00:10:10 +08:00
|
|
|
endif
|
|
|
|
|
2008-03-29 22:33:33 +08:00
|
|
|
# VLC-release.app for packaging and giving it to your friends
|
|
|
|
# use package-macosx to get a nice dmg
|
2005-04-06 22:36:57 +08:00
|
|
|
VLC-release.app: vlc
|
2008-02-04 21:06:44 +08:00
|
|
|
( cd src && make install )
|
2008-02-05 09:01:09 +08:00
|
|
|
rm -Rf "$(top_builddir)/tmp"
|
2008-02-04 22:54:09 +08:00
|
|
|
mkdir -p "$(top_builddir)/tmp/extras/package/macosx"
|
2005-04-06 22:36:57 +08:00
|
|
|
rm -Rf $(top_builddir)/VLC-release.app
|
2008-07-28 03:52:40 +08:00
|
|
|
for i in vlc.xcodeproj Resources README.MacOSX.rtf ; do \
|
2008-02-06 18:38:15 +08:00
|
|
|
cp -R $(srcdir)/extras/package/macosx/$$i $(top_builddir)/tmp/extras/package/macosx/; \
|
|
|
|
done
|
2008-11-25 16:49:07 +08:00
|
|
|
REVISION=`git describe --always` && \
|
2008-08-14 08:45:20 +08:00
|
|
|
cat $(top_builddir)/extras/package/macosx/Info.plist | \
|
|
|
|
sed "s/#REVISION#/$$REVISION/g" > $(top_builddir)/tmp/extras/package/macosx/Info.plist
|
|
|
|
cp -R $(top_builddir)/extras/package/macosx/Resources $(top_builddir)/tmp/extras/package/macosx/
|
2008-02-06 18:38:15 +08:00
|
|
|
for i in AUTHORS COPYING THANKS; do \
|
2005-04-06 22:36:57 +08:00
|
|
|
cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
|
|
|
|
done
|
|
|
|
mkdir -p $(top_builddir)/tmp/modules/audio_output
|
|
|
|
mkdir -p $(top_builddir)/tmp/modules/gui/macosx
|
|
|
|
for i in \
|
2006-05-25 22:59:57 +08:00
|
|
|
AppleRemote.h \
|
|
|
|
AppleRemote.m \
|
2005-04-06 22:36:57 +08:00
|
|
|
about.h \
|
|
|
|
about.m \
|
|
|
|
applescript.h \
|
|
|
|
applescript.m \
|
|
|
|
controls.h \
|
|
|
|
controls.m \
|
|
|
|
equalizer.h \
|
|
|
|
equalizer.m \
|
|
|
|
intf.h \
|
|
|
|
intf.m \
|
|
|
|
macosx.m \
|
|
|
|
misc.h \
|
|
|
|
misc.m \
|
|
|
|
open.h \
|
|
|
|
open.m \
|
|
|
|
output.h \
|
|
|
|
output.m \
|
|
|
|
playlist.h \
|
|
|
|
playlist.m \
|
|
|
|
playlistinfo.h \
|
|
|
|
playlistinfo.m \
|
|
|
|
prefs_widgets.h \
|
|
|
|
prefs_widgets.m \
|
|
|
|
prefs.h \
|
|
|
|
prefs.m \
|
2008-02-10 02:19:49 +08:00
|
|
|
simple_prefs.h \
|
|
|
|
simple_prefs.m \
|
2005-04-06 22:36:57 +08:00
|
|
|
vout.h \
|
|
|
|
voutgl.m \
|
2005-06-20 03:37:42 +08:00
|
|
|
wizard.h \
|
|
|
|
wizard.m \
|
2005-08-05 07:24:50 +08:00
|
|
|
extended.h \
|
|
|
|
extended.m \
|
2005-08-25 23:02:30 +08:00
|
|
|
bookmarks.h \
|
|
|
|
bookmarks.m \
|
2006-03-04 01:29:13 +08:00
|
|
|
update.h \
|
|
|
|
update.m \
|
2009-04-08 05:27:58 +08:00
|
|
|
coredialogs.h \
|
|
|
|
coredialogs.m \
|
2006-03-04 01:29:13 +08:00
|
|
|
embeddedwindow.h \
|
|
|
|
embeddedwindow.m \
|
2006-10-13 00:33:35 +08:00
|
|
|
fspanel.h \
|
|
|
|
fspanel.m \
|
2005-04-06 22:36:57 +08:00
|
|
|
vout.m; do \
|
|
|
|
cp "$(srcdir)/modules/gui/macosx/$$i" \
|
|
|
|
$(top_builddir)/tmp/modules/gui/macosx; \
|
|
|
|
done
|
2008-02-04 09:17:33 +08:00
|
|
|
cd $(top_builddir)/tmp/extras/package/macosx && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)' && \
|
2008-02-05 20:59:07 +08:00
|
|
|
cd ../../../../ && \
|
2008-02-04 09:17:33 +08:00
|
|
|
cp -R $(top_builddir)/tmp/extras/package/macosx/build/Default/VLC.bundle \
|
2006-12-31 22:27:10 +08:00
|
|
|
$(top_builddir)/VLC-release.app; \
|
2005-04-06 22:36:57 +08:00
|
|
|
rm -Rf $(top_builddir)/tmp
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS
|
2008-08-10 20:45:55 +08:00
|
|
|
PRODUCT="VLC-release.app" ACTION="release-makefile" src_dir=$(srcdir) build_dir=$(top_builddir) sh $(srcdir)/projects/macosx/framework/Pre-Compile.sh
|
2008-09-01 05:25:27 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua
|
|
|
|
for i in $(srcdir)/share/lua/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/`basename $${i}` ; \
|
|
|
|
done ; \
|
2008-04-03 04:32:33 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/playlist
|
|
|
|
for i in $(srcdir)/share/lua/playlist/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/playlist/`basename $${i}` ; \
|
2007-05-20 23:36:55 +08:00
|
|
|
done ; \
|
2008-04-03 04:32:33 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/meta
|
|
|
|
for i in $(srcdir)/share/lua/meta/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/meta/`basename $${i}` ; \
|
2007-08-14 05:46:27 +08:00
|
|
|
done ; \
|
2008-04-03 04:32:33 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/intf
|
|
|
|
for i in $(srcdir)/share/lua/intf/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/intf/`basename $${i}` ; \
|
2007-11-05 05:42:27 +08:00
|
|
|
done ; \
|
2008-04-03 04:32:33 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/intf/modules
|
|
|
|
for i in $(srcdir)/share/lua/intf/modules/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/intf/modules/`basename $${i}` ; \
|
2007-11-05 05:42:27 +08:00
|
|
|
done ; \
|
2008-04-04 03:26:10 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/dialogs
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/js
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/images
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/requests
|
|
|
|
$(INSTALL) -m 644 $(srcdir)/share/lua/http/.hosts $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/.hosts
|
|
|
|
for i in $(srcdir)/share/lua/http/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2008-04-04 03:26:10 +08:00
|
|
|
for i in $(srcdir)/share/lua/http/dialogs/* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/dialogs/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2008-04-04 03:26:10 +08:00
|
|
|
for i in $(srcdir)/share/lua/http/js/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/js/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2008-04-04 03:26:10 +08:00
|
|
|
for i in $(srcdir)/share/lua/http/images/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/images/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2008-04-04 03:26:10 +08:00
|
|
|
for i in $(srcdir)/share/lua/http/requests/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/requests/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2008-04-04 03:26:10 +08:00
|
|
|
$(INSTALL) -m 644 $(srcdir)/share/lua/http/requests/readme $(top_builddir)/VLC-release.app/Contents/MacOS/share/lua/http/requests/readme.txt
|
2006-03-20 22:13:04 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/admin
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/vlm
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/images
|
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests
|
2007-12-31 06:08:08 +08:00
|
|
|
$(INSTALL) -m 644 $(srcdir)/share/http/.hosts $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/.hosts
|
|
|
|
$(INSTALL) -m 644 $(srcdir)/share/http/old/.hosts $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/.hosts
|
2006-03-20 22:13:04 +08:00
|
|
|
for i in $(srcdir)/share/http/*.* ; do \
|
2005-04-06 22:36:57 +08:00
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2006-03-20 22:13:04 +08:00
|
|
|
for i in $(srcdir)/share/http/dialogs/* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/dialogs/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2006-03-20 22:13:04 +08:00
|
|
|
for i in $(srcdir)/share/http/js/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/js/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2006-03-20 22:13:04 +08:00
|
|
|
for i in $(srcdir)/share/http/old/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2006-03-20 22:13:04 +08:00
|
|
|
for i in $(srcdir)/share/http/old/admin/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/admin/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2006-03-20 22:13:04 +08:00
|
|
|
for i in $(srcdir)/share/http/old/vlm/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/old/vlm/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2006-03-20 22:13:04 +08:00
|
|
|
for i in $(srcdir)/share/http/images/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/images/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2006-03-20 22:13:04 +08:00
|
|
|
for i in $(srcdir)/share/http/requests/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests/`basename $${i}` ; \
|
2008-02-05 20:59:07 +08:00
|
|
|
done
|
2006-03-23 02:09:55 +08:00
|
|
|
$(INSTALL) -m 644 $(srcdir)/share/http/requests/readme $(top_builddir)/VLC-release.app/Contents/MacOS/share/http/requests/readme.txt
|
2008-07-29 04:22:00 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/locale
|
2007-09-18 23:16:31 +08:00
|
|
|
cat $(top_srcdir)/po/LINGUAS | while read i; do \
|
2008-08-24 05:58:09 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/locale/$${i}/LC_MESSAGES ; \
|
|
|
|
$(INSTALL) $(srcdir)/po/$${i}.gmo $(top_builddir)/VLC-release.app/Contents/MacOS/share/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
|
2005-04-06 22:36:57 +08:00
|
|
|
mkdir -p $(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
|
|
|
|
ln -sf ../English.lproj/InfoPlist.strings \
|
|
|
|
$(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
|
|
|
|
ln -sf ../English.lproj/MainMenu.nib \
|
|
|
|
$(top_builddir)/VLC-release.app/Contents/Resources/$${i}.lproj ; \
|
|
|
|
done
|
|
|
|
printf "APPLVLC#" >| $(top_builddir)/VLC-release.app/Contents/PkgInfo
|
2008-09-14 06:29:20 +08:00
|
|
|
find $(top_builddir)/VLC-release.app/Contents/Resources/English.lproj -name classes.nib -delete;
|
|
|
|
find $(top_builddir)/VLC-release.app/Contents/Resources/English.lproj -name info.nib -delete;
|
2009-05-27 18:04:45 +08:00
|
|
|
find $(top_builddir)/VLC-release.app/Contents/Resources/English.lproj -name designable.nib -delete;
|
2007-06-27 02:59:05 +08:00
|
|
|
find $(top_builddir)/VLC-release.app -type d -exec chmod ugo+rx '{}' \;
|
|
|
|
find $(top_builddir)/VLC-release.app -type f -exec chmod ugo+r '{}' \;
|
2005-04-06 22:36:57 +08:00
|
|
|
|
2008-03-29 22:33:33 +08:00
|
|
|
# This is just for development purposes.
|
2009-03-02 00:32:19 +08:00
|
|
|
# The resulting VLC.app will only run in this tree.
|
2008-08-15 19:08:39 +08:00
|
|
|
VLC.app: vlc $(top_builddir)/src/.libs/libvlccore.dylib $(top_builddir)/src/.libs/libvlc.dylib
|
2008-05-28 08:18:47 +08:00
|
|
|
(cd src && make install)
|
2008-02-04 22:54:09 +08:00
|
|
|
rm -Rf $(top_builddir)/tmp
|
|
|
|
mkdir -p "$(top_builddir)/tmp/extras/package/macosx"
|
2003-08-24 08:29:03 +08:00
|
|
|
rm -Rf $(top_builddir)/VLC.app
|
2008-07-28 03:52:40 +08:00
|
|
|
for i in vlc.xcodeproj Resources README.MacOSX.rtf; do \
|
2008-02-06 18:38:15 +08:00
|
|
|
cp -R $(srcdir)/extras/package/macosx/$$i $(top_builddir)/tmp/extras/package/macosx/; \
|
|
|
|
done
|
2008-11-25 16:49:07 +08:00
|
|
|
REVISION=`git describe --always` && \
|
2008-08-14 08:45:20 +08:00
|
|
|
cat $(top_builddir)/extras/package/macosx/Info.plist | \
|
|
|
|
sed "s/#REVISION#/$$REVISION/g" > $(top_builddir)/tmp/extras/package/macosx/Info.plist
|
|
|
|
cp -R $(top_builddir)/extras/package/macosx/Resources $(top_builddir)/tmp/extras/package/macosx/
|
2008-02-06 18:38:15 +08:00
|
|
|
for i in AUTHORS COPYING THANKS; do \
|
2003-08-24 08:29:03 +08:00
|
|
|
cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
|
|
|
|
done
|
|
|
|
mkdir -p $(top_builddir)/tmp/modules/audio_output
|
|
|
|
mkdir -p $(top_builddir)/tmp/modules/gui/macosx
|
|
|
|
for i in \
|
2006-05-25 22:59:57 +08:00
|
|
|
AppleRemote.h \
|
|
|
|
AppleRemote.m \
|
2003-08-24 08:29:03 +08:00
|
|
|
about.h \
|
|
|
|
about.m \
|
|
|
|
applescript.h \
|
|
|
|
applescript.m \
|
|
|
|
controls.h \
|
|
|
|
controls.m \
|
2004-08-08 05:56:42 +08:00
|
|
|
equalizer.h \
|
|
|
|
equalizer.m \
|
2003-08-24 08:29:03 +08:00
|
|
|
intf.h \
|
|
|
|
intf.m \
|
|
|
|
macosx.m \
|
|
|
|
misc.h \
|
|
|
|
misc.m \
|
|
|
|
open.h \
|
|
|
|
open.m \
|
|
|
|
output.h \
|
|
|
|
output.m \
|
|
|
|
playlist.h \
|
|
|
|
playlist.m \
|
2004-04-30 02:32:58 +08:00
|
|
|
playlistinfo.h \
|
|
|
|
playlistinfo.m \
|
2004-02-06 05:01:44 +08:00
|
|
|
prefs_widgets.h \
|
|
|
|
prefs_widgets.m \
|
2003-08-24 08:29:03 +08:00
|
|
|
prefs.h \
|
|
|
|
prefs.m \
|
2008-02-10 02:19:49 +08:00
|
|
|
simple_prefs.h \
|
|
|
|
simple_prefs.m \
|
2003-08-24 08:29:03 +08:00
|
|
|
vout.h \
|
2004-08-22 23:16:03 +08:00
|
|
|
voutgl.m \
|
2005-06-20 03:37:42 +08:00
|
|
|
wizard.h \
|
|
|
|
wizard.m \
|
2005-08-05 07:24:50 +08:00
|
|
|
extended.h \
|
|
|
|
extended.m \
|
2005-08-25 23:02:30 +08:00
|
|
|
bookmarks.h \
|
|
|
|
bookmarks.m \
|
2006-03-04 01:29:13 +08:00
|
|
|
update.h \
|
|
|
|
update.m \
|
2009-04-08 05:27:58 +08:00
|
|
|
coredialogs.h \
|
|
|
|
coredialogs.m \
|
2006-03-04 01:29:13 +08:00
|
|
|
embeddedwindow.h \
|
|
|
|
embeddedwindow.m \
|
2006-10-13 00:33:35 +08:00
|
|
|
fspanel.h \
|
|
|
|
fspanel.m \
|
2003-08-24 08:29:03 +08:00
|
|
|
vout.m; do \
|
|
|
|
cp "$(srcdir)/modules/gui/macosx/$$i" \
|
|
|
|
$(top_builddir)/tmp/modules/gui/macosx; \
|
|
|
|
done
|
2008-02-04 09:17:33 +08:00
|
|
|
cd $(top_builddir)/tmp/extras/package/macosx && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)' && \
|
2008-02-05 20:59:07 +08:00
|
|
|
cd ../../../../ && \
|
2008-02-04 09:17:33 +08:00
|
|
|
cp -R $(top_builddir)/tmp/extras/package/macosx/build/Default/VLC.bundle \
|
2008-02-05 20:59:07 +08:00
|
|
|
$(top_builddir)/VLC.app
|
2003-08-24 08:29:03 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS
|
2008-05-28 08:03:57 +08:00
|
|
|
touch $(top_builddir)/VLC.app/Contents/MacOS/VLC
|
|
|
|
chmod +x $(top_builddir)/VLC.app/Contents/MacOS/VLC
|
2008-08-24 18:02:24 +08:00
|
|
|
$(INSTALL) $(top_builddir)/bin/.libs/vlc $(top_builddir)/VLC.app/Contents/MacOS/VLC
|
2008-08-14 08:45:20 +08:00
|
|
|
ln -sf ../../../modules $(top_builddir)/VLC.app/Contents/MacOS/modules
|
2008-08-14 09:47:54 +08:00
|
|
|
install -d $(top_builddir)/VLC.app/Contents/MacOS/share
|
|
|
|
for i in `ls $(srcdir)/share`; do \
|
|
|
|
ln -sf `pwd`/$(srcdir)/share/$$i $(top_builddir)/VLC.app/Contents/MacOS/share/; \
|
|
|
|
done
|
2008-07-29 04:22:00 +08:00
|
|
|
$(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/share/locale
|
2007-09-18 23:16:31 +08:00
|
|
|
cat $(top_srcdir)/po/LINGUAS | while read i; do \
|
2008-07-29 04:22:00 +08:00
|
|
|
mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/share/locale/$${i}/LC_MESSAGES ; \
|
|
|
|
ln -sfn `pwd`/$(srcdir)/po/$${i}.gmo $(top_builddir)/VLC.app/Contents/MacOS/share/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
|
2003-08-24 08:29:03 +08:00
|
|
|
mkdir -p $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
|
|
|
|
ln -sf ../English.lproj/InfoPlist.strings \
|
|
|
|
$(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
|
|
|
|
ln -sf ../English.lproj/MainMenu.nib \
|
|
|
|
$(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
|
2002-12-27 08:17:49 +08:00
|
|
|
done
|
2003-08-24 08:29:03 +08:00
|
|
|
printf "APPLVLC#" >| $(top_builddir)/VLC.app/Contents/PkgInfo
|
2002-09-30 19:05:42 +08:00
|
|
|
|
2002-12-26 05:02:35 +08:00
|
|
|
###############################################################################
|
|
|
|
# Building architecture-specific binary packages
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# XXX: this rule is probably only useful to you if you have exactly
|
2007-09-01 06:16:19 +08:00
|
|
|
# the same setup as the maintaner(s).
|
2002-12-26 05:02:35 +08:00
|
|
|
#
|
2006-02-20 04:14:07 +08:00
|
|
|
|
2008-08-28 04:09:40 +08:00
|
|
|
############################################################################
|
|
|
|
## Win ##
|
|
|
|
############################################################################
|
2008-07-31 05:06:20 +08:00
|
|
|
win32_destdir=$(top_builddir)/vlc-$(VERSION)
|
2009-02-02 20:29:32 +08:00
|
|
|
win32_debugdir=$(top_builddir)/symbols-$(VERSION)
|
|
|
|
npvlc=vlc-$(VERSION)/mozilla/npvlc$(LIBEXT)
|
|
|
|
axvlc=vlc-$(VERSION)/activex/axvlc$(LIBEXT)
|
2008-07-31 05:06:20 +08:00
|
|
|
win32_lua_destdir=$(win32_destdir)/lua
|
|
|
|
win32_http_destdir=$(win32_destdir)/http
|
|
|
|
|
2008-05-28 09:36:51 +08:00
|
|
|
#Win-common if for win32 and wince
|
2006-02-20 04:14:07 +08:00
|
|
|
package-win-common:
|
2004-05-15 01:07:50 +08:00
|
|
|
# Check that tmp isn't in the way
|
2008-07-31 05:06:20 +08:00
|
|
|
@if test -e "$(win32_destdir)"; then \
|
|
|
|
echo "Error: please remove $(win32_destdir), it is in the way"; \
|
2003-06-28 00:26:02 +08:00
|
|
|
false; \
|
2002-12-26 05:02:35 +08:00
|
|
|
else \
|
2008-07-31 05:06:20 +08:00
|
|
|
echo "OK."; mkdir -p "$(win32_destdir)"; \
|
2002-12-26 05:02:35 +08:00
|
|
|
fi
|
2004-05-15 01:07:50 +08:00
|
|
|
|
2002-12-26 05:02:35 +08:00
|
|
|
# Copy relevant files
|
2008-05-28 09:36:51 +08:00
|
|
|
# Copy executables and libs
|
2008-08-24 15:24:17 +08:00
|
|
|
cp "$(top_builddir)/bin/.libs/vlc$(EXEEXT)" "$(win32_destdir)/"
|
2008-07-31 05:06:20 +08:00
|
|
|
cp "$(top_srcdir)/extras/package/win32/vlc.exe.manifest" "$(win32_destdir)/"
|
2008-11-25 06:06:47 +08:00
|
|
|
cp "$(top_srcdir)/extras/package/win32/libvlc.dll.manifest" "$(win32_destdir)/"
|
2008-07-31 05:06:20 +08:00
|
|
|
cp "$(top_builddir)/src/.libs/libvlccore$(LIBEXT)" "$(win32_destdir)/"
|
|
|
|
cp "$(top_builddir)/src/.libs/libvlc$(LIBEXT)" "$(win32_destdir)/"
|
2004-04-28 21:01:14 +08:00
|
|
|
|
2008-05-28 09:36:51 +08:00
|
|
|
# Copy Text files
|
2007-11-10 06:07:51 +08:00
|
|
|
for file in AUTHORS MAINTAINERS THANKS ; \
|
2008-07-31 05:06:20 +08:00
|
|
|
do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(win32_destdir)/$${file}.txt" ; done;
|
2007-11-12 03:26:32 +08:00
|
|
|
for file in NEWS COPYING README; \
|
2008-07-31 05:06:20 +08:00
|
|
|
do cp "$(srcdir)/$$file" "$(win32_destdir)/$${file}.txt"; done
|
2008-11-13 08:04:23 +08:00
|
|
|
unix2dos "$(win32_destdir)/"*.txt || echo "WARNING: this shouldn't happen"
|
2003-02-27 03:39:43 +08:00
|
|
|
|
2008-05-28 09:36:51 +08:00
|
|
|
# Necessary icons
|
2009-01-05 07:11:11 +08:00
|
|
|
cp $(srcdir)/share/vlc.ico $(win32_destdir)/
|
2008-05-28 09:36:51 +08:00
|
|
|
|
|
|
|
# Copy the locales
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p $(win32_destdir)/locale
|
2007-09-18 23:16:31 +08:00
|
|
|
cat $(top_srcdir)/po/LINGUAS | while read i; do \
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_destdir)/locale/$${i}/LC_MESSAGES" ; \
|
2003-06-28 00:26:02 +08:00
|
|
|
cp "$(srcdir)/po/$${i}.gmo" \
|
2008-07-31 05:06:20 +08:00
|
|
|
"$(win32_destdir)/locale/$${i}/LC_MESSAGES/vlc.mo" \
|
2003-08-29 01:46:34 +08:00
|
|
|
|| true ; \
|
2003-02-27 03:39:43 +08:00
|
|
|
done
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p $(win32_destdir)/locale/qt4/
|
|
|
|
cp $(QT4LOCALEDIR)/*.qm $(win32_destdir)/locale/qt4/ || true
|
2003-02-27 03:39:43 +08:00
|
|
|
|
2008-05-28 09:36:51 +08:00
|
|
|
# Mozilla plugin
|
2003-10-21 05:48:46 +08:00
|
|
|
if BUILD_MOZILLA
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_destdir)/mozilla"
|
|
|
|
cp $(top_builddir)/projects/mozilla/.libs/npvlc$(LIBEXT) $(win32_destdir)/mozilla/
|
2008-11-27 00:20:17 +08:00
|
|
|
cp $(top_srcdir)/projects/mozilla/npvlc.dll.manifest $(win32_destdir)/mozilla/
|
2003-10-21 05:48:46 +08:00
|
|
|
endif
|
|
|
|
|
2008-05-28 09:36:51 +08:00
|
|
|
# ActiveX plugin
|
2005-01-28 22:17:38 +08:00
|
|
|
if BUILD_ACTIVEX
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_destdir)/activex"
|
|
|
|
cp $(srcdir)/projects/activex/README.TXT $(win32_destdir)/activex/
|
|
|
|
cp $(srcdir)/projects/activex/test.html $(win32_destdir)/activex/
|
|
|
|
unix2dos $(win32_destdir)/activex/*
|
2005-01-28 22:17:38 +08:00
|
|
|
|
2008-07-31 05:06:20 +08:00
|
|
|
cp $(top_builddir)/projects/activex/.libs/axvlc$(LIBEXT) $(win32_destdir)/activex/
|
2008-11-27 00:20:17 +08:00
|
|
|
cp $(top_srcdir)/projects/activex/axvlc.dll.manifest $(win32_destdir)/activex/
|
2005-01-28 22:17:38 +08:00
|
|
|
endif
|
2008-05-28 09:36:51 +08:00
|
|
|
|
2005-04-18 20:58:14 +08:00
|
|
|
# Rebase all those DLLs to speed up loading (need cygwin rebase)
|
2006-02-01 19:20:52 +08:00
|
|
|
if rebase -b 0x42 /dev/null >/dev/null 2>&1; then \
|
2008-07-31 05:06:20 +08:00
|
|
|
find $(win32_destdir) -type f -name '*.dll' -print | rebase -b 0x70000000 -T -; \
|
2005-04-18 20:58:14 +08:00
|
|
|
fi
|
2005-01-28 22:17:38 +08:00
|
|
|
|
2006-02-20 04:14:07 +08:00
|
|
|
package-win32-base-debug: package-win-common
|
|
|
|
# Copy relevant files
|
2008-04-06 13:16:48 +08:00
|
|
|
# Script installer
|
2008-07-31 05:06:20 +08:00
|
|
|
cp "$(top_builddir)/extras/package/win32/vlc.win32.nsi" "$(win32_destdir)/"
|
2008-08-06 16:27:35 +08:00
|
|
|
mkdir "$(win32_destdir)/languages"
|
|
|
|
cp $(srcdir)/extras/package/win32/languages/*.nsh "$(win32_destdir)/languages/"
|
2006-02-20 04:14:07 +08:00
|
|
|
|
2008-04-06 13:16:48 +08:00
|
|
|
# Plugins
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_destdir)/plugins"
|
2008-04-25 04:09:08 +08:00
|
|
|
find modules/ -name '*_plugin$(LIBEXT)' | while read i; do \
|
2006-02-20 04:14:07 +08:00
|
|
|
if test -n "$$i" ; then \
|
2008-04-22 03:42:55 +08:00
|
|
|
$(INSTALL) "$$i" "vlc-$(VERSION)/plugins/" ; \
|
2006-02-20 04:14:07 +08:00
|
|
|
fi ; done
|
|
|
|
|
2008-10-14 21:03:01 +08:00
|
|
|
# Contrib *.dll's
|
2008-10-21 00:00:25 +08:00
|
|
|
cp $(srcdir)/extras/contrib/lib/*.dll "vlc-$(VERSION)/" || true
|
2008-10-14 21:03:01 +08:00
|
|
|
|
2008-05-28 09:36:51 +08:00
|
|
|
# Copy the lua scripts (HTTP)
|
|
|
|
if BUILD_LUA
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_lua_destdir)/http/images"
|
|
|
|
mkdir -p "$(win32_lua_destdir)/http/requests"
|
|
|
|
mkdir -p "$(win32_lua_destdir)/http/js"
|
|
|
|
mkdir -p "$(win32_lua_destdir)/http/dialogs"
|
|
|
|
cp $(srcdir)/share/lua/http/*.html $(win32_lua_destdir)/http/
|
|
|
|
unix2dos $(win32_lua_destdir)/http/*.html
|
|
|
|
cp $(srcdir)/share/lua/http/.hosts $(win32_lua_destdir)/http/
|
|
|
|
unix2dos $(win32_lua_destdir)/http/.hosts
|
|
|
|
cp $(srcdir)/share/lua/http/*.css $(win32_lua_destdir)/http/
|
|
|
|
unix2dos $(win32_lua_destdir)/http/*.css
|
|
|
|
cp $(srcdir)/share/lua/http/js/*.js $(win32_lua_destdir)/http/js/
|
|
|
|
unix2dos $(win32_lua_destdir)/http/js/*.js
|
|
|
|
cp $(srcdir)/share/lua/http/dialogs/* $(win32_lua_destdir)/http/dialogs/
|
|
|
|
unix2dos $(win32_lua_destdir)/http/dialogs/*
|
|
|
|
cp $(srcdir)/share/lua/http/dialogs/.hosts $(win32_lua_destdir)/http/dialogs/
|
|
|
|
unix2dos $(win32_lua_destdir)/http/dialogs/.hosts
|
|
|
|
cp $(srcdir)/share/lua/http/*.ico $(win32_lua_destdir)/http/
|
|
|
|
cp $(srcdir)/share/lua/http/images/*.png $(win32_lua_destdir)/http/images/
|
|
|
|
cp $(srcdir)/share/lua/http/requests/*.xml $(win32_lua_destdir)/http/requests/
|
|
|
|
unix2dos $(win32_lua_destdir)/http/requests/*.xml
|
|
|
|
cp $(srcdir)/share/lua/http/requests/readme $(win32_lua_destdir)/http/requests/readme.txt
|
|
|
|
unix2dos $(win32_lua_destdir)/http/requests/readme.txt
|
2008-04-11 19:52:55 +08:00
|
|
|
endif
|
2006-02-20 04:14:07 +08:00
|
|
|
|
2008-04-11 19:52:55 +08:00
|
|
|
if BUILD_LUA
|
2008-04-06 13:16:48 +08:00
|
|
|
#Lua Scripts
|
2008-09-01 05:25:27 +08:00
|
|
|
$(INSTALL) -d $(win32_lua_destdir)
|
|
|
|
for i in $(srcdir)/share/lua/*.* ; do \
|
|
|
|
$(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/`basename $${i}` ; \
|
|
|
|
done
|
2008-07-31 05:06:20 +08:00
|
|
|
$(INSTALL) -d $(win32_lua_destdir)/playlist
|
2008-04-03 04:32:33 +08:00
|
|
|
for i in $(srcdir)/share/lua/playlist/*.* ; do \
|
2008-07-31 05:06:20 +08:00
|
|
|
$(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/playlist/`basename $${i}` ; \
|
2008-05-23 00:32:05 +08:00
|
|
|
done
|
2008-07-31 05:06:20 +08:00
|
|
|
$(INSTALL) -d $(win32_lua_destdir)/meta
|
2008-04-03 04:32:33 +08:00
|
|
|
for i in $(srcdir)/share/lua/meta/*.* ; do \
|
2008-07-31 05:06:20 +08:00
|
|
|
$(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/meta/`basename $${i}` ; \
|
2008-05-23 00:32:05 +08:00
|
|
|
done
|
2008-07-31 05:06:20 +08:00
|
|
|
$(INSTALL) -d $(win32_lua_destdir)/intf
|
2008-04-03 04:32:33 +08:00
|
|
|
for i in $(srcdir)/share/lua/intf/*.* ; do \
|
2008-07-31 05:06:20 +08:00
|
|
|
$(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/intf/`basename $${i}` ; \
|
2008-05-23 00:32:05 +08:00
|
|
|
done
|
2008-07-31 05:06:20 +08:00
|
|
|
$(INSTALL) -d $(win32_lua_destdir)/intf/modules
|
2008-04-03 04:32:33 +08:00
|
|
|
for i in $(srcdir)/share/lua/intf/modules/*.* ; do \
|
2008-07-31 05:06:20 +08:00
|
|
|
$(INSTALL) -m 644 -- "$${i}" $(win32_lua_destdir)/intf/modules/`basename $${i}` ; \
|
2008-05-28 09:36:51 +08:00
|
|
|
done
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Copy the http files
|
|
|
|
if BUILD_HTTPD
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_http_destdir)/images"
|
|
|
|
mkdir -p "$(win32_http_destdir)/requests"
|
|
|
|
mkdir -p "$(win32_http_destdir)/js"
|
|
|
|
mkdir -p "$(win32_http_destdir)/dialogs"
|
|
|
|
mkdir -p "$(win32_http_destdir)/old"
|
|
|
|
mkdir -p "$(win32_http_destdir)/old/vlm"
|
|
|
|
mkdir -p "$(win32_http_destdir)/old/admin"
|
|
|
|
cp $(srcdir)/share/http/*.html $(win32_http_destdir)/
|
|
|
|
unix2dos $(win32_http_destdir)/*.html
|
|
|
|
cp $(srcdir)/share/http/.hosts $(win32_http_destdir)/
|
|
|
|
unix2dos $(win32_http_destdir)/.hosts
|
|
|
|
cp $(srcdir)/share/http/*.css $(win32_http_destdir)/
|
|
|
|
unix2dos $(win32_http_destdir)/*.css
|
|
|
|
cp $(srcdir)/share/http/js/*.js $(win32_http_destdir)/js/
|
|
|
|
unix2dos $(win32_http_destdir)/js/*.js
|
|
|
|
cp $(srcdir)/share/http/dialogs/* $(win32_http_destdir)/dialogs/
|
|
|
|
unix2dos $(win32_http_destdir)/dialogs/*
|
|
|
|
cp $(srcdir)/share/http/dialogs/.hosts $(win32_http_destdir)/dialogs/
|
|
|
|
unix2dos $(win32_http_destdir)/dialogs/.hosts
|
|
|
|
cp $(srcdir)/share/http/*.ico $(win32_http_destdir)/
|
|
|
|
cp $(srcdir)/share/http/images/*.png $(win32_http_destdir)/images/
|
|
|
|
cp $(srcdir)/share/http/requests/*.xml $(win32_http_destdir)/requests/
|
|
|
|
unix2dos $(win32_http_destdir)/requests/*.xml
|
|
|
|
cp $(srcdir)/share/http/requests/readme $(win32_http_destdir)/requests/readme.txt
|
|
|
|
unix2dos $(win32_http_destdir)/requests/readme.txt
|
|
|
|
|
|
|
|
cp $(srcdir)/share/http/old/*.html $(win32_http_destdir)/old/
|
|
|
|
unix2dos $(win32_http_destdir)/old/*.html
|
|
|
|
cp $(srcdir)/share/http/old/*.css $(win32_http_destdir)/old/
|
|
|
|
cp $(srcdir)/share/http/old/.hosts $(win32_http_destdir)/old/
|
|
|
|
cp $(srcdir)/share/http/old/*.png $(win32_http_destdir)/old/
|
|
|
|
cp $(srcdir)/share/http/old/vlm/*.html $(win32_http_destdir)/old/vlm/
|
|
|
|
unix2dos $(win32_http_destdir)/old/vlm/*.html
|
|
|
|
cp $(srcdir)/share/http/old/admin/*.html $(win32_http_destdir)/old/admin/
|
|
|
|
unix2dos $(win32_http_destdir)/old/admin/*.html
|
|
|
|
cp $(srcdir)/share/http/old/admin/.access $(win32_http_destdir)/old/admin/
|
2008-05-28 09:36:51 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_SKINS
|
|
|
|
# Skins
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p $(win32_destdir)/skins/fonts
|
2008-05-28 09:36:51 +08:00
|
|
|
for i in $(srcdir)/share/skins2/fonts/*.*; do \
|
2008-07-31 05:06:20 +08:00
|
|
|
cp -- "$$i" $(win32_destdir)/skins/fonts/ || true ; \
|
2008-05-28 09:36:51 +08:00
|
|
|
done
|
2008-09-12 07:40:34 +08:00
|
|
|
for i in $(top_builddir)/share/skins2/*.*; do \
|
2008-07-31 05:06:20 +08:00
|
|
|
cp -- "$$i" $(win32_destdir)/skins/ || true ; \
|
2008-09-12 08:33:25 +08:00
|
|
|
done
|
2009-02-23 06:40:51 +08:00
|
|
|
cp -- $(srcdir)/share/skins2/skin.catalog $(win32_destdir)/skins/ || true ;
|
|
|
|
cp -- $(srcdir)/share/skins2/skin.dtd $(win32_destdir)/skins/ || true ;
|
2008-04-11 19:52:55 +08:00
|
|
|
endif
|
2007-08-14 02:53:46 +08:00
|
|
|
|
2008-04-11 19:52:55 +08:00
|
|
|
if BUILD_OSDMENU
|
2008-04-06 13:16:48 +08:00
|
|
|
#OSD Menu
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_destdir)/osdmenu"
|
|
|
|
cp $(srcdir)/share/osdmenu/*.* "$(win32_destdir)/osdmenu"
|
2009-01-27 16:18:11 +08:00
|
|
|
for dir in default default/selected default/selection default/volume ;do \
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_destdir)/osdmenu/$$dir"; \
|
2009-01-27 16:18:11 +08:00
|
|
|
for file in $(srcdir)/share/osdmenu/$${dir}/*.png;do \
|
2008-07-31 05:06:20 +08:00
|
|
|
cp -- "$$file" "$(win32_destdir)/osdmenu/$$dir"; \
|
2006-02-20 04:14:07 +08:00
|
|
|
done; \
|
|
|
|
done
|
2008-07-31 05:06:20 +08:00
|
|
|
unix2dos $(win32_destdir)/osdmenu/*.cfg;
|
|
|
|
for file in $(win32_destdir)/osdmenu/*.cfg; do \
|
2008-05-23 00:32:05 +08:00
|
|
|
sed 's%share/osdmenu%osdmenu%g' "$$file" > "$$file.tmp" || exit $$? ; \
|
|
|
|
sed 's%/%\\%g' "$$file.tmp" > "$$file" || exit$$? ; \
|
|
|
|
rm -f -- "$$file.tmp"; \
|
2007-09-18 07:36:25 +08:00
|
|
|
done
|
2008-04-11 19:52:55 +08:00
|
|
|
endif
|
2006-02-20 04:14:07 +08:00
|
|
|
|
2008-07-08 01:36:42 +08:00
|
|
|
# SDK
|
2008-07-31 05:06:20 +08:00
|
|
|
mkdir -p "$(win32_destdir)/sdk.tmp"
|
|
|
|
mkdir -p "$(win32_destdir)/sdk"
|
2008-07-08 01:36:42 +08:00
|
|
|
d=$$(pwd) && \
|
|
|
|
cd src && \
|
|
|
|
make install DESTDIR="$$d/vlc-$(VERSION)/sdk.tmp"
|
|
|
|
cd vlc-$(VERSION) && mv sdk.tmp/$(prefix)/* sdk/
|
|
|
|
find vlc-$(VERSION)/sdk.tmp -type d | sort -r | xargs rmdir
|
|
|
|
rm -Rf vlc-$(VERSION)/sdk/bin
|
|
|
|
|
2008-07-31 05:06:20 +08:00
|
|
|
#strip exe and main dll
|
2008-07-02 23:34:30 +08:00
|
|
|
package-win-common-strip: package-win32-base-debug
|
2009-02-02 20:29:32 +08:00
|
|
|
@if test -e "$(win32_debugdir)"; then \
|
|
|
|
echo "Error: please remove $(win32_debugdir), it is in the way"; \
|
|
|
|
false; \
|
|
|
|
else \
|
|
|
|
echo "OK."; mkdir -p "$(win32_debugdir)"; \
|
|
|
|
fi
|
2008-10-21 04:50:58 +08:00
|
|
|
for i in "" vlc-$(VERSION)/*$(LIBEXT) ; \
|
2009-02-02 20:29:32 +08:00
|
|
|
do if test -n "$$i" ; then \
|
|
|
|
$(OBJCOPY) --only-keep-debug "$$i" "$$i.dbg"; \
|
|
|
|
$(OBJCOPY) --strip-debug "$$i" ; \
|
|
|
|
$(OBJCOPY) --add-gnu-debuglink="$$i.dbg" "$$i" ; \
|
|
|
|
mv "$$i.dbg" "$(win32_debugdir)"; \
|
|
|
|
fi; done
|
|
|
|
|
2008-05-28 09:36:51 +08:00
|
|
|
if BUILD_MOZILLA
|
2009-02-02 20:29:32 +08:00
|
|
|
$(OBJCOPY) --only-keep-debug "$(npvlc)" "$(npvlc).dbg"
|
|
|
|
$(OBJCOPY) --strip-debug "$(npvlc)"
|
|
|
|
$(OBJCOPY) --add-gnu-debuglink="$(npvlc).dbg" "$(npvlc)"
|
|
|
|
mv "$(npvlc).dbg" "$(win32_debugdir)"
|
2008-05-28 09:36:51 +08:00
|
|
|
endif
|
|
|
|
if BUILD_ACTIVEX
|
2009-02-02 20:29:32 +08:00
|
|
|
$(OBJCOPY) --only-keep-debug "$(axvlc)" "$(axvlc).dbg"
|
|
|
|
$(OBJCOPY) --strip-debug "$(axvlc)"
|
|
|
|
$(OBJCOPY) --add-gnu-debuglink="$(axvlc).dbg" "$(axvlc)"
|
|
|
|
mv "$(axvlc).dbg" "$(win32_debugdir)"
|
2008-05-28 09:36:51 +08:00
|
|
|
endif
|
|
|
|
|
2008-07-31 05:06:20 +08:00
|
|
|
#strip all plugins dll
|
2008-07-02 23:34:30 +08:00
|
|
|
package-win32-base: package-win-common-strip
|
2008-07-31 05:06:20 +08:00
|
|
|
for i in "" $(win32_destdir)/plugins/*$(LIBEXT) ; \
|
2009-02-02 20:29:32 +08:00
|
|
|
do if test -n "$$i" ; then \
|
|
|
|
$(OBJCOPY) --only-keep-debug "$$i" "$$i.dbg"; \
|
|
|
|
$(OBJCOPY) --strip-debug "$$i" ; \
|
|
|
|
$(OBJCOPY) --add-gnu-debuglink="$$i.dbg" "$$i" ; \
|
|
|
|
mv "$$i.dbg" "$(win32_debugdir)"; \
|
|
|
|
fi ; done
|
2006-01-29 02:43:13 +08:00
|
|
|
|
2006-02-25 06:39:45 +08:00
|
|
|
package-win32-base-exe: package-win32-base
|
2004-12-28 22:11:36 +08:00
|
|
|
# Create package
|
2008-07-31 05:34:33 +08:00
|
|
|
rm -Rf $(win32_destdir)/sdk
|
2006-02-01 19:20:52 +08:00
|
|
|
if makensis -VERSION >/dev/null 2>&1; then \
|
2008-06-14 07:24:31 +08:00
|
|
|
MAKENSIS="makensis"; \
|
2005-12-14 21:53:36 +08:00
|
|
|
elif [ -x "/cygdrive/c/Program Files/NSIS/makensis" ]; then \
|
2008-07-25 09:04:59 +08:00
|
|
|
MAKENSIS="/cygdrive/c/Program\ Files/NSIS/makensis"; \
|
2008-02-03 22:02:07 +08:00
|
|
|
elif [ -x "$(PROGRAMFILES)/NSIS/makensis" ]; then \
|
2008-06-14 07:24:31 +08:00
|
|
|
MAKENSIS="$(PROGRAMFILES)/NSIS/makensis"; \
|
2007-10-13 00:25:08 +08:00
|
|
|
elif wine --version >/dev/null 2>&1; then \
|
2008-06-14 07:24:31 +08:00
|
|
|
MAKENSIS="wine C:/Program\ Files/NSIS/makensis.exe"; \
|
2005-12-14 21:53:36 +08:00
|
|
|
else \
|
|
|
|
echo 'Error: cannot locate makensis tool'; exit 1; \
|
|
|
|
fi; \
|
2008-07-31 05:06:20 +08:00
|
|
|
eval "$$MAKENSIS $(win32_destdir)/vlc.win32.nsi"
|
2005-02-08 22:33:40 +08:00
|
|
|
|
2006-02-25 06:39:45 +08:00
|
|
|
package-win32-base-zip: package-win32-base
|
2002-12-26 05:02:35 +08:00
|
|
|
# Create package
|
2008-07-03 03:17:02 +08:00
|
|
|
rm -f -- vlc-$(VERSION)-win32.zip
|
2008-02-03 22:02:07 +08:00
|
|
|
zip -r -9 vlc-$(VERSION)-win32.zip vlc-$(VERSION)
|
2003-08-29 01:46:34 +08:00
|
|
|
|
2008-08-28 04:09:40 +08:00
|
|
|
package-win32-base-debug-zip: package-win32-base-debug
|
|
|
|
# Create package
|
|
|
|
rm -f -- vlc-$(VERSION)-win32-debug.zip
|
|
|
|
zip -r -9 vlc-$(VERSION)-win32-debug.zip vlc-$(VERSION)
|
|
|
|
|
2006-03-22 04:56:35 +08:00
|
|
|
package-win32-base-7zip: package-win32-base
|
|
|
|
# Create package
|
2008-02-03 22:02:07 +08:00
|
|
|
7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on vlc-$(VERSION)-win32.7z vlc-$(VERSION)
|
2006-03-22 04:56:35 +08:00
|
|
|
|
2008-08-28 04:09:40 +08:00
|
|
|
package-win32-base-debug-7zip: package-win32-base-debug
|
|
|
|
# Create package
|
|
|
|
7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on vlc-$(VERSION)-win32-debug.7z vlc-$(VERSION)
|
|
|
|
|
2003-08-29 01:46:34 +08:00
|
|
|
package-win32-exe: package-win32-base package-win32-base-exe
|
|
|
|
# Clean up
|
2008-07-31 05:06:20 +08:00
|
|
|
rm -Rf $(win32_destdir)
|
2005-02-08 22:33:40 +08:00
|
|
|
|
2006-02-25 06:39:45 +08:00
|
|
|
package-win32-zip: package-win32-base-zip
|
2003-08-29 01:46:34 +08:00
|
|
|
# Clean up
|
2008-07-31 05:06:20 +08:00
|
|
|
rm -Rf $(win32_destdir)
|
2003-08-29 01:46:34 +08:00
|
|
|
|
2008-08-28 04:09:40 +08:00
|
|
|
package-win32-debug-zip: package-win32-base-debug-zip
|
|
|
|
# Clean up
|
|
|
|
rm -Rf $(win32_destdir)
|
|
|
|
|
2006-03-22 04:56:35 +08:00
|
|
|
package-win32-7zip: package-win32-base-7zip
|
|
|
|
# Clean up
|
2008-07-31 05:06:20 +08:00
|
|
|
rm -Rf $(win32_destdir)
|
2006-03-22 04:56:35 +08:00
|
|
|
|
2008-08-28 04:09:40 +08:00
|
|
|
package-win32-debug-7zip: package-win32-base-debug-7zip
|
|
|
|
# Clean up
|
|
|
|
rm -Rf $(win32_destdir)
|
|
|
|
|
2008-07-31 05:06:20 +08:00
|
|
|
package-win32-no-clean: package-win32-base-zip package-win32-base-7zip package-win32-base-exe
|
2006-12-12 05:06:55 +08:00
|
|
|
|
|
|
|
package-win32: package-win32-no-clean
|
2002-12-26 05:02:35 +08:00
|
|
|
# Clean up
|
2008-07-31 05:06:20 +08:00
|
|
|
rm -Rf $(win32_destdir)
|
2002-12-26 05:02:35 +08:00
|
|
|
|
2008-08-28 04:09:40 +08:00
|
|
|
package-win32-debug: package-win32-base-debug-zip package-win32-base-debug-7zip
|
|
|
|
# Clean up
|
|
|
|
rm -Rf $(win32_destdir)
|
|
|
|
|
2006-03-28 23:40:43 +08:00
|
|
|
package-wince-base: package-win-common package-win-common-strip
|
2005-09-29 03:36:15 +08:00
|
|
|
|
|
|
|
package-wince-base-zip:
|
|
|
|
# Create package
|
2008-02-03 22:02:07 +08:00
|
|
|
zip -r vlc-$(VERSION)-wince.zip vlc-$(VERSION)
|
2005-09-29 03:36:15 +08:00
|
|
|
|
|
|
|
package-wince: package-wince-base package-wince-base-zip
|
|
|
|
# Clean up
|
2008-07-31 05:06:20 +08:00
|
|
|
rm -Rf $(win32_destdir)
|
2005-09-29 03:36:15 +08:00
|
|
|
|
|
|
|
|
2008-08-28 04:09:40 +08:00
|
|
|
#####################################################################
|
|
|
|
## BeOS ##
|
|
|
|
#####################################################################
|
2002-12-26 05:02:35 +08:00
|
|
|
package-beos:
|
|
|
|
# Check that tmp isn't in the way
|
2003-05-24 20:35:06 +08:00
|
|
|
@if test -e $(srcdir)/tmp; then \
|
2003-06-28 00:26:02 +08:00
|
|
|
echo "Error: please remove $(srcdir)/tmp, it is in the way"; \
|
2003-12-17 16:53:54 +08:00
|
|
|
false ; \
|
2002-12-26 05:02:35 +08:00
|
|
|
else \
|
2003-12-17 16:53:54 +08:00
|
|
|
echo "OK." ; mkdir $(srcdir)/tmp ; \
|
2002-12-26 05:02:35 +08:00
|
|
|
fi
|
2003-04-23 00:36:16 +08:00
|
|
|
|
2002-12-26 05:02:35 +08:00
|
|
|
# Copy relevant files
|
2008-05-23 00:32:05 +08:00
|
|
|
mkdir -p $(srcdir)/tmp/vlc
|
2004-07-23 22:19:31 +08:00
|
|
|
cd $(srcdir) && cp -R vlc-bundle/* AUTHORS COPYING ChangeLog README \
|
2008-05-23 00:32:05 +08:00
|
|
|
THANKS NEWS tmp/vlc/
|
2004-07-23 22:19:31 +08:00
|
|
|
|
|
|
|
# Create debug package
|
2008-05-23 00:32:05 +08:00
|
|
|
xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc
|
|
|
|
find $(srcdir)/tmp/vlc -exec mimeset -f {} \;
|
|
|
|
mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-$(VERSION)
|
2008-02-03 22:02:07 +08:00
|
|
|
(cd $(srcdir)/tmp && zip -9 -r vlc-$(VERSION)-BeOS-debug.zip vlc-$(VERSION) )
|
2008-05-23 00:32:05 +08:00
|
|
|
mv $(srcdir)/tmp/vlc-$(VERSION)-BeOS-debug.zip $(srcdir)/
|
|
|
|
mv $(srcdir)/tmp/vlc-$(VERSION) $(srcdir)/tmp/vlc
|
2003-04-23 00:36:16 +08:00
|
|
|
|
2004-07-23 22:19:31 +08:00
|
|
|
# Create normal package
|
2008-05-23 00:32:05 +08:00
|
|
|
$(STRIP) --strip-debug --strip-unneeded $(srcdir)/tmp/vlc/vlc
|
2005-02-19 09:58:57 +08:00
|
|
|
find $(srcdir)/tmp/vlc -name 'lib*.so' -exec $(STRIP) \
|
2008-05-23 00:32:05 +08:00
|
|
|
--strip-debug --strip-unneeded "{}" \;
|
|
|
|
xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc
|
|
|
|
find $(srcdir)/tmp/vlc -exec mimeset -f {} \;
|
|
|
|
mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-$(VERSION)
|
2008-02-03 22:02:07 +08:00
|
|
|
(cd $(srcdir)/tmp && zip -9 -r vlc-$(VERSION)-BeOS.zip vlc-$(VERSION) )
|
2008-05-23 00:32:05 +08:00
|
|
|
mv $(srcdir)/tmp/vlc-$(VERSION)-BeOS.zip $(srcdir)/
|
2003-04-23 00:36:16 +08:00
|
|
|
|
2002-12-26 05:02:35 +08:00
|
|
|
# Clean up
|
2008-05-23 00:32:05 +08:00
|
|
|
rm -Rf $(srcdir)/tmp
|
2002-12-26 05:02:35 +08:00
|
|
|
|
2008-08-28 04:09:40 +08:00
|
|
|
#########################################################################
|
|
|
|
## MacOS X ##
|
|
|
|
#########################################################################
|
2008-08-26 05:45:06 +08:00
|
|
|
package-macosx: VLC-release.app ChangeLog
|
2006-01-05 05:53:52 +08:00
|
|
|
# Check that the temporary location isn't in the way
|
2008-02-03 22:02:07 +08:00
|
|
|
@if test -e "$(top_builddir)/vlc-$(VERSION)/"; then \
|
|
|
|
rm -Rf "$(top_builddir)/vlc-$(VERSION)/" ; \
|
2002-12-26 05:02:35 +08:00
|
|
|
fi
|
|
|
|
|
2008-02-03 22:02:07 +08:00
|
|
|
echo "Create package directory: vlc-$(VERSION)/";
|
|
|
|
mkdir -p "$(top_builddir)/vlc-$(VERSION)/";
|
2006-01-05 05:53:52 +08:00
|
|
|
|
2002-12-26 05:02:35 +08:00
|
|
|
# Copy relevant files
|
2006-10-30 17:13:32 +08:00
|
|
|
@if test -e "$(top_builddir)/VLC-release.app/"; then \
|
2008-02-03 22:02:07 +08:00
|
|
|
cp -R "$(top_builddir)/VLC-release.app" "$(top_builddir)/vlc-$(VERSION)/VLC.app"; \
|
2006-10-30 17:13:32 +08:00
|
|
|
else \
|
2008-02-03 22:02:07 +08:00
|
|
|
cp -R "$(top_builddir)/VLC.app" "$(top_builddir)/vlc-$(VERSION)/VLC.app"; \
|
2006-10-30 17:13:32 +08:00
|
|
|
fi
|
2009-05-27 17:55:14 +08:00
|
|
|
mkdir -p $(top_builddir)/vlc-$(VERSION)/Goodies/ && \
|
2008-02-03 22:02:07 +08:00
|
|
|
mkdir -p $(top_builddir)/vlc-$(VERSION)/.background/ && \
|
2009-05-27 17:55:14 +08:00
|
|
|
cp $(srcdir)/AUTHORS $(srcdir)/COPYING $(srcdir)/README $(srcdir)/THANKS $(srcdir)/NEWS $(top_builddir)/vlc-$(VERSION)/Goodies/ && \
|
|
|
|
cp -R $(srcdir)/extras/package/macosx/Delete_Preferences.app $(top_builddir)/vlc-$(VERSION)/Goodies/Delete\ VLC\ Preferences.app && \
|
|
|
|
cp $(srcdir)/extras/package/macosx/README.MacOSX.rtf $(top_builddir)/vlc-$(VERSION)/Read\ Me.rtf && \
|
|
|
|
cp $(srcdir)/extras/package/macosx/Resources/about_bg.png $(top_builddir)/vlc-$(VERSION)/.background/background.png
|
|
|
|
cp -L $(top_builddir)/ChangeLog $(top_builddir)/vlc-$(VERSION)/Goodies/
|
2007-04-04 00:46:15 +08:00
|
|
|
|
|
|
|
# Place a link to the application folder
|
2008-05-23 00:32:05 +08:00
|
|
|
ln -s /Applications $(top_builddir)/vlc-$(VERSION)/Applications
|
2002-12-26 05:02:35 +08:00
|
|
|
|
2008-01-19 22:01:00 +08:00
|
|
|
# Create disk image (temporarily taken from the 0.8.6-bugfix branch to provide reliable NBs)
|
2008-05-23 00:32:05 +08:00
|
|
|
echo "Creating disk image"
|
|
|
|
rm -f "$(top_builddir)/vlc-$(VERSION).dmg"
|
2008-02-03 22:02:07 +08:00
|
|
|
hdiutil create -verbose -srcfolder "$(top_builddir)/vlc-$(VERSION)" \
|
2008-05-23 00:32:05 +08:00
|
|
|
"$(top_builddir)/vlc-$(VERSION).dmg" -scrub
|
|
|
|
echo "Disk image creation completed:"
|
|
|
|
ls -la "$(top_builddir)/vlc-$(VERSION).dmg" ; echo
|
2008-01-19 22:01:00 +08:00
|
|
|
|
|
|
|
# Create disk image
|
2008-05-23 00:32:05 +08:00
|
|
|
# echo "Creating disk image"
|
|
|
|
# rm -f "$(top_builddir)/vlc-$(VERSION).dmg"
|
2008-02-03 22:02:07 +08:00
|
|
|
# hdiutil create -verbose -srcfolder "$(top_builddir)/vlc-$(VERSION)" \
|
|
|
|
# "$(top_builddir)/vlc-$(VERSION).dmg" -format UDRW \
|
2008-05-23 00:32:05 +08:00
|
|
|
# -scrub -imagekey zlib-level=9 -attach
|
2007-04-04 00:46:15 +08:00
|
|
|
|
|
|
|
# Make sure the root window of the dmg will pop up when the dmg is mounted.
|
|
|
|
# Note: We dont mount in /Volumes to be sure we won't collide with an other
|
|
|
|
# finder mounted dmg with the same name.
|
2008-05-23 00:32:05 +08:00
|
|
|
# echo "Make sure the root window of the dmg will pop up when the dmg is mounted"
|
|
|
|
# mkdir -p $(top_builddir)/vlcmnt
|
|
|
|
# hdiutil attach -nokernel -readwrite -noverify -noautoopen -private "$(top_builddir)/vlc-$(VERSION).dmg" -mountpoint "$(top_builddir)/vlcmnt/vlc-$(VERSION)"
|
|
|
|
# bless --folder "$(top_builddir)/vlcmnt/vlc-$(VERSION)/" --openfolder "$(top_builddir)/vlcmnt/vlc-$(VERSION)"
|
2008-01-19 22:01:00 +08:00
|
|
|
# sleep 1 # Make sure operation completes
|
2008-01-06 00:42:17 +08:00
|
|
|
# cd "$(srcdir)"
|
2007-04-04 00:46:15 +08:00
|
|
|
|
|
|
|
# Unmount the image now
|
2008-05-23 00:32:05 +08:00
|
|
|
# hdiutil detach "$(top_builddir)/vlcmnt/vlc-$(VERSION)"
|
|
|
|
# rm -R $(top_builddir)/vlcmnt
|
2007-04-04 00:46:15 +08:00
|
|
|
|
|
|
|
# Make sure the image is not writable
|
|
|
|
# Note: We can't directly create a read only dmg as we do the bless stuff
|
2008-05-23 00:32:05 +08:00
|
|
|
echo "Make the disk image read-only"
|
|
|
|
mv "$(top_builddir)/vlc-$(VERSION).dmg" "$(top_builddir)/vlc-$(VERSION)-rw.dmg"
|
|
|
|
hdiutil convert "$(top_builddir)/vlc-$(VERSION)-rw.dmg" -format UDZO -o "$(top_builddir)/vlc-$(VERSION).dmg"
|
|
|
|
rm "$(top_builddir)/vlc-$(VERSION)-rw.dmg"
|
2007-04-04 00:46:15 +08:00
|
|
|
|
|
|
|
# We are done
|
2008-05-23 00:32:05 +08:00
|
|
|
echo "Disk image creation completed:"
|
|
|
|
ls -la "$(top_builddir)/vlc-$(VERSION).dmg" ; echo
|
2002-12-26 05:02:35 +08:00
|
|
|
|
|
|
|
# Clean up
|
2008-05-23 00:32:05 +08:00
|
|
|
rm -Rf "$(top_builddir)/vlc-$(VERSION)"
|
2002-12-26 05:02:35 +08:00
|
|
|
|
2008-08-04 00:11:10 +08:00
|
|
|
package-macosx-zip: VLC-release.app
|
2008-04-17 08:40:06 +08:00
|
|
|
rm -Rf $(top_builddir)/vlc-$(VERSION)
|
|
|
|
mkdir -p $(top_builddir)/vlc-$(VERSION)
|
|
|
|
cp -R $(top_builddir)/VLC-release.app $(top_builddir)/vlc-$(VERSION)/VLC.app
|
2008-04-17 17:47:09 +08:00
|
|
|
mkdir -p $(top_builddir)/vlc-$(VERSION)/Goodies
|
2008-04-17 17:55:00 +08:00
|
|
|
for i in AUTHORS COPYING ChangeLog README THANKS NEWS; do \
|
|
|
|
cp $(srcdir)/$$i $(top_builddir)/vlc-$(VERSION)/Goodies; \
|
2008-04-17 08:40:06 +08:00
|
|
|
done
|
|
|
|
cp -R $(srcdir)/extras/package/macosx/Delete_Preferences.app \
|
|
|
|
$(top_builddir)/vlc-$(VERSION)/Goodies
|
|
|
|
cp $(srcdir)/extras/package/macosx/README.MacOSX.rtf \
|
2008-08-04 00:11:10 +08:00
|
|
|
$(top_builddir)/vlc-$(VERSION)/Read\ Me.rtf
|
2008-04-17 08:40:06 +08:00
|
|
|
zip -r $(top_builddir)/vlc-$(VERSION).zip $(top_builddir)/vlc-$(VERSION)
|
2008-04-17 17:47:09 +08:00
|
|
|
rm -Rf $(top_builddir)/vlc-$(VERSION)
|
2008-04-17 07:45:04 +08:00
|
|
|
|
|
|
|
package-macosx-framework-zip:
|
2008-04-17 08:40:06 +08:00
|
|
|
rm -Rf $(top_builddir)/vlckit-$(VERSION)
|
|
|
|
mkdir -p $(top_builddir)/vlckit-$(VERSION)
|
|
|
|
cp -R $(srcdir)/projects/macosx/framework/build/Debug/VLCKit.framework \
|
|
|
|
$(top_builddir)/vlckit-$(VERSION)/VLCKit.framework
|
2008-04-17 17:47:09 +08:00
|
|
|
mkdir -p $(top_builddir)/vlc-$(VERSION)/Goodies
|
|
|
|
for i in AUTHORS COPYING ChangeLog README THANKS NEWS; do \
|
|
|
|
cp $(srcdir)/$$i $(top_builddir)/vlckit-$(VERSION)/Goodies; \
|
2008-04-17 08:40:06 +08:00
|
|
|
done
|
|
|
|
zip -r $(top_builddir)/vlckit-$(VERSION).zip $(top_builddir)/vlckit-$(VERSION)
|
2008-04-17 17:47:09 +08:00
|
|
|
rm -Rf $(top_builddir)/vlc-$(VERSION)
|
2008-04-17 07:45:04 +08:00
|
|
|
|
2006-05-01 00:08:32 +08:00
|
|
|
package-macosx-plugin:
|
|
|
|
if BUILD_MOZILLA
|
2006-05-01 01:40:34 +08:00
|
|
|
# Create Installer
|
|
|
|
rm -rf "$(top_builddir)/macosx-plugin-instdata/"; true
|
2006-05-01 00:08:32 +08:00
|
|
|
mkdir -p "$(top_builddir)/macosx-plugin-instdata"
|
2008-02-04 09:17:33 +08:00
|
|
|
cp -R "$(top_builddir)/projects/mozilla/VLC Plugin.plugin" "$(top_builddir)/macosx-plugin-instdata"
|
2006-05-01 00:08:32 +08:00
|
|
|
rm -rf "$(top_builddir)/VLC Internet Plug-In.pkg"
|
2008-11-12 02:47:05 +08:00
|
|
|
export PACKAGEMAKER=
|
|
|
|
if test -x /Developer/Tools/packagemaker; then \
|
|
|
|
export PACKAGEMAKER=/Developer/Tools/packagemaker; \
|
|
|
|
fi; \
|
|
|
|
if test -x /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker; then \
|
|
|
|
export PACKAGEMAKER=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker; \
|
|
|
|
fi; \
|
|
|
|
$${PACKAGEMAKER} -build -ds -p "$(top_builddir)/VLC Internet Plug-In.pkg" \
|
2006-05-01 00:08:32 +08:00
|
|
|
-f "$(top_builddir)/macosx-plugin-instdata" \
|
2008-02-04 09:17:33 +08:00
|
|
|
-i "$(srcdir)/extras/package/macosx/plugin/InstallerInfo.plist" \
|
|
|
|
-d "$(srcdir)/extras/package/macosx/plugin/InstallerDescription.plist"; true
|
2006-05-01 00:08:32 +08:00
|
|
|
rm -rf "$(top_builddir)/macosx-plugin-instdata/"
|
2006-05-01 01:40:34 +08:00
|
|
|
|
|
|
|
# Create disk image
|
2008-02-03 22:02:07 +08:00
|
|
|
rm -f "$(top_builddir)/vlc-plugin-$(VERSION).dmg"; true
|
|
|
|
rm -rf "$(top_builddir)/vlc-plugin-$(VERSION)/"; true
|
|
|
|
mkdir -p "$(top_builddir)/vlc-plugin-$(VERSION)/"
|
|
|
|
mv "$(top_builddir)/VLC Internet Plug-In.pkg" "$(top_builddir)/vlc-plugin-$(VERSION)/"
|
|
|
|
hdiutil create -srcfolder "$(top_builddir)/vlc-plugin-$(VERSION)" \
|
|
|
|
"$(top_builddir)/vlc-plugin-$(VERSION).dmg" -format UDZO \
|
2008-05-23 00:32:05 +08:00
|
|
|
-scrub -imagekey zlib-level=9
|
2006-05-01 01:40:34 +08:00
|
|
|
echo "Disk image creation completed:"
|
2008-02-03 22:02:07 +08:00
|
|
|
rm -rf "$(top_builddir)/vlc-plugin-$(VERSION)"
|
2006-05-01 00:08:32 +08:00
|
|
|
endif
|
|
|
|
|
2004-02-06 05:01:44 +08:00
|
|
|
package-translations:
|
2008-02-03 22:02:07 +08:00
|
|
|
@if test -e "$(srcdir)/vlc-translations-$(VERSION)"; then \
|
|
|
|
echo "Error: please remove $(srcdir)/vlc-translations-$(VERSION), it is in the way"; \
|
2004-02-06 05:01:44 +08:00
|
|
|
false; \
|
|
|
|
else \
|
2008-02-03 22:02:07 +08:00
|
|
|
echo "OK."; mkdir -p "$(srcdir)/vlc-translations-$(VERSION)"; \
|
2004-02-06 05:01:44 +08:00
|
|
|
fi
|
|
|
|
# Copy translations
|
2007-09-18 23:16:31 +08:00
|
|
|
cat $(top_srcdir)/po/LINGUAS | while read i; do \
|
2004-02-06 05:01:44 +08:00
|
|
|
cp "$(srcdir)/po/$${i}.po" \
|
2008-02-03 22:02:07 +08:00
|
|
|
"$(srcdir)/vlc-translations-$(VERSION)/$${i}.po" \
|
2004-02-06 05:01:44 +08:00
|
|
|
|| true ; \
|
|
|
|
done
|
|
|
|
cp "$(srcdir)/doc/translations.txt" \
|
2008-02-03 22:02:07 +08:00
|
|
|
"$(srcdir)/vlc-translations-$(VERSION)/README.txt"
|
2004-02-06 05:01:44 +08:00
|
|
|
|
|
|
|
echo "#!/bin/sh" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
|
|
|
|
echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
|
|
|
|
echo 'if test $$# != 1; then' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
|
|
|
|
echo " echo \"Usage: convert-po.sh <.po file>\"" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
|
|
|
|
echo " exit 1" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
|
|
|
|
echo "fi" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
|
|
|
|
echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
|
|
|
|
echo 'msgfmt --statistics -o vlc.mo $$1' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
|
|
|
|
|
|
|
|
$(AMTAR) chof - $(srcdir)/vlc-translations-$(VERSION) \
|
|
|
|
| GZIP=$(GZIP_ENV) gzip -c >$(srcdir)/vlc-translations-$(VERSION).tar.gz
|
|
|
|
|
2005-08-13 21:14:19 +08:00
|
|
|
###############################################################################
|
|
|
|
# PO translation files update
|
|
|
|
###############################################################################
|
|
|
|
.PHONY: update-po
|
|
|
|
|
|
|
|
update-po:
|
2005-08-22 22:22:41 +08:00
|
|
|
cd po && $(MAKE) POTFILES vlc.pot update-po
|
2005-08-13 21:14:19 +08:00
|
|
|
|
|
|
|
|
2006-01-05 05:53:52 +08:00
|
|
|
###############################################################################
|
|
|
|
# Enforce Mac OS X deployment target environment variable
|
|
|
|
###############################################################################
|
2007-07-29 16:26:56 +08:00
|
|
|
macosx-sdk: Makefile.in $(HEADERS_include) vlc-config
|
2006-01-05 05:53:52 +08:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET=$(MACOSX_DEPLOYMENT_TARGET)
|