Makefile 362 B

123456789101112131415161718
  1. VLCKit.zip: VLCKit
  2. zip -r -y -9 $@ $<
  3. VLCKit: build/Debug/VLCKit.framework
  4. rm -rf $@-tmp && mkdir -p $@-tmp
  5. cp -R $< $@-tmp
  6. cp COPYING $@-tmp
  7. mv $@-tmp $@ && touch $@
  8. build/Debug/VLCKit.framework:
  9. xcodebuild -project VLCKit.xcodeproj -target "Build Everything"
  10. clean:
  11. xcodebuild -project VLCKit.xcodeproj clean
  12. rm -fr VLCKit VLCKit.zip
  13. .PHONY: clean