Commit b1af1fb5 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* strongly improved the speed of make VLC.app and make VLC-release.app by only...

* strongly improved the speed of make VLC.app and make VLC-release.app by only copying the xcode project and the Resources folder instead of various plugins and most importantly the framework to a temporary folder
parent 944a9914
......@@ -354,7 +354,8 @@ VLC-release.app: vlc
echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
fi
rm -Rf $(top_builddir)/VLC-release.app
cp -R $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
cp -R $(srcdir)/extras/MacOSX/vlc.xcodeproj $(top_builddir)/tmp/extras/MacOSX/
cp -R $(srcdir)/extras/MacOSX/Resources $(top_builddir)/tmp/extras/MacOSX
for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
done
......@@ -542,10 +543,11 @@ VLC.app: vlc
echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
false; \
else \
echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
echo "OK."; mkdir -p "$(top_builddir)/tmp/extras/MacOSX"; \
fi
rm -Rf $(top_builddir)/VLC.app
cp -R $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
cp -R $(srcdir)/extras/MacOSX/vlc.xcodeproj $(top_builddir)/tmp/extras/MacOSX/
cp -R $(srcdir)/extras/MacOSX/Resources $(top_builddir)/tmp/extras/MacOSX
for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
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