Commit 0ddec016 authored by Rafaël Carré's avatar Rafaël Carré

VLCKit: move building/packaging to project folder

parent fc4007ed
......@@ -89,12 +89,6 @@ package-macosx-zip: VLC.app
zip -r -y -9 $(top_builddir)/vlc-$(VERSION).zip $(top_builddir)/vlc-$(VERSION)
rm -rf "$(top_builddir)/vlc-$(VERSION)"
package-macosx-framework-zip:
mkdir -p $(top_builddir)/vlckit-$(VERSION)/Goodies/
cp -R $(srcdir)/projects/macosx/framework/build/Debug/VLCKit.framework $(top_builddir)/vlckit-$(VERSION)/
cd $(srcdir); cp AUTHORS COPYING README THANKS NEWS $(abs_top_builddir)/vlckit-$(VERSION)/Goodies/
zip -r -y -9 $(top_builddir)/vlckit-$(VERSION).zip $(top_builddir)/vlckit-$(VERSION)
package-translations:
mkdir -p "$(srcdir)/vlc-translations-$(VERSION)"
for i in `cat "$(top_srcdir)/po/LINGUAS"`; do \
......@@ -114,4 +108,4 @@ package-translations:
$(AMTAR) chof - $(srcdir)/vlc-translations-$(VERSION) \
| GZIP=$(GZIP_ENV) gzip -c >$(srcdir)/vlc-translations-$(VERSION).tar.gz
.PHONY: package-macosx package-macosx-zip package-macosx-framework-zip package-translations
.PHONY: package-macosx package-macosx-zip package-translations
all:
xcodebuild
VLCKit.zip: VLCKit
zip -r -y -9 $@ $<
VLCKit: build/Debug/VLCKit.framework
rm -rf $@-tmp && mkdir -p $@-tmp
cp -R $< $@-tmp
cp ../../../COPYING $@-tmp
mv $@-tmp $@ && touch $@
build/Debug/VLCKit.framework:
xcodebuild -project VLCKit.xcodeproj -target "Build Everything"
clean:
xcodebuild clean
\ No newline at end of file
xcodebuild -project VLCKit.xcodeproj clean
rm -fr VLCKit VLCKit.zip
.PHONY: clean
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