2 changed files with 16 additions and 10 deletions
@ -1,5 +1,17 @@ |
|||
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 |
|||
xcodebuild -project VLCKit.xcodeproj clean |
|||
rm -fr VLCKit VLCKit.zip |
|||
|
|||
.PHONY: clean |
|||
|
|||
Loading…
Reference in new issue