Commit 2528cb4f authored by Rafaël Carré's avatar Rafaël Carré

VLC-tmp.app : remove .app suffix

It doesn't give an OSX application
(cherry picked from commit ffdd8bed)

Conflicts:

	extras/package/macosx/package.mak
Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent b998e6a2
......@@ -7,26 +7,26 @@ endif
# This is just for development purposes.
# The resulting VLC.app will only run in this tree.
VLC.app: VLC-tmp.app
VLC.app: VLC-tmp
rm -Rf $@
cp -R VLC-tmp.app $@
cp -R VLC-tmp $@
$(INSTALL) -m 0755 $(top_builddir)/bin/.libs/vlc $@/Contents/MacOS/VLC
$(LN_S) -f ../../../modules $@/Contents/MacOS/plugins
rm -Rf VLC-tmp.app
rm -Rf VLC-tmp
# VLC-release.app for packaging and giving it to your friends
# use package-macosx to get a nice dmg
VLC-release.app: VLC-tmp.app
VLC-release.app: VLC-tmp
rm -Rf $@
cp -R VLC-tmp.app $@
cp -R VLC-tmp $@
PRODUCT="$@" ACTION="release-makefile" src_dir=$(srcdir) build_dir=$(top_builddir) sh $(srcdir)/projects/macosx/framework/Pre-Compile.sh
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
rm -Rf VLC-tmp
# common target to a VLC bundle used by both the dev and the release build
VLC-tmp.app: vlc
VLC-tmp: vlc
$(AM_V_GEN)for i in src lib share; do \
(cd $$i && $(MAKE) $(AM_MAKEFLAGS) install $(silentstd)); \
done
......
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