-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
13 lines (13 loc) · 851 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
Release.xcarchive:
xcodebuild -workspace BeoplayRemoteGUI.xcodeproj/project.xcworkspace -scheme BeoplayRemoteGUI clean archive -configuration Release -archivePath Release.xcarchive
release: Release.xcarchive
release-unsigned:
xcodebuild -workspace BeoplayRemoteGUI.xcodeproj/project.xcworkspace -scheme BeoplayRemoteGUI clean archive -configuration Release -archivePath Release.xcarchive DEVELOPMENT_TEAM="" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
ln -s /Applications Release.xcarchive/Products/Applications/
hdiutil create -srcfolder Release.xcarchive/Products/Applications -volname BeoplayRemoteGUI BeoplayRemoteGUI.dmg
clean:
rm -rf Release.xcarchive BeoplayRemoteGUI.dmg
uninstall:
rm -rf /Applications/BeoplayRemoteGUI.app
install: uninstall release
cp -rp Release.xcarchive/Products/Applications/BeoplayRemoteGUI.app /Applications