Commit 0c1d8897 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: remove the intermediate VLC-tmp.app after creating either VLC.app or...

macosx: remove the intermediate VLC-tmp.app after creating either VLC.app or VLC-release.app since it is of no use without further processing
parent 1f58ae83
......@@ -12,6 +12,7 @@ VLC.app: VLC-tmp.app
cp -R VLC-tmp.app $@
$(INSTALL) -m 0755 $(top_builddir)/bin/.libs/vlc $@/Contents/MacOS/VLC
$(LN_S) -f ../../../modules $@/Contents/MacOS/plugins
rm -Rf VLC-tmp.app
# VLC-release.app for packaging and giving it to your friends
# use package-macosx to get a nice dmg
......@@ -22,8 +23,9 @@ VLC-release.app: VLC-tmp.app
find $@ -type d -exec chmod ugo+rx '{}' \;
find $@ -type f -exec chmod ugo+r '{}' \;
rm -Rf $@/Contents/Frameworks/BGHUDAppKit.framework/Resources/
rm -Rf VLC-tmp.app
# common target to a VLC bundle used by both the dev and the release build
VLC-tmp.app: vlc
$(AM_V_GEN)(cd src && $(MAKE) $(AM_MAKEFLAGS) install $(silentstd))
(cd lib && $(MAKE) $(AM_MAKEFLAGS) install $(silentstd))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment