diff --git a/.gitignore b/.gitignore index e43b0f9..d107f32 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .DS_Store +dist/macos/supersphere-app-OSX.zip diff --git a/Makefile b/Makefile index 6d0793e..47c2de5 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,12 @@ build: rm -fr supersphere.love zip -r dist/supersphere.love assets lib *.lua + +mac: build + mv dist/supersphere.love dist/macos/Super\ Sphere.app/Contents/Resources/supersphere.love + cd dist/macos && zip -r supersphere-app-OSX.zip * + rm -fr dist/macos/Super\ Sphere.app/Contents/Resources/supersphere.love + windows: mv conf.lua conf.default.lua @@ -9,7 +15,7 @@ windows: $(MAKE) build cd dist/windows && cat .love.exe ../supersphere.love > SuperSphere.exe - cd dist/windows && zip -r supersphere.zip * + cd dist/windows && zip -r supersphere-WIN.zip * mv conf.lua conf.windows.lua mv conf.default.lua conf.lua @@ -18,5 +24,5 @@ windows: android: build cp dist/supersphere.love dist/android/game.love cd dist/android && ./gradlew build - mv dist/android/app/build/outputs/apk/app-debug.apk dist/android/supersphere.apk + mv dist/android/app/build/outputs/apk/app-debug.apk dist/android/supersphere-ANDROID.apk rm -fr dist/android/game.love \ No newline at end of file diff --git a/dist/ios/platform/xcode/love.xcodeproj/project.xcworkspace/xcuserdata/kennethreitz.xcuserdatad/UserInterfaceState.xcuserstate b/dist/ios/platform/xcode/love.xcodeproj/project.xcworkspace/xcuserdata/kennethreitz.xcuserdatad/UserInterfaceState.xcuserstate index 1a4bc1f..175f5a5 100644 Binary files a/dist/ios/platform/xcode/love.xcodeproj/project.xcworkspace/xcuserdata/kennethreitz.xcuserdatad/UserInterfaceState.xcuserstate and b/dist/ios/platform/xcode/love.xcodeproj/project.xcworkspace/xcuserdata/kennethreitz.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/dist/macos/Super Sphere.app/Contents/Resources/supersphere.love b/dist/macos/Super Sphere.app/Contents/Resources/supersphere.love deleted file mode 100644 index 679f6cb..0000000 Binary files a/dist/macos/Super Sphere.app/Contents/Resources/supersphere.love and /dev/null differ diff --git a/dist/supersphere.love b/dist/supersphere.love deleted file mode 100644 index f5305cf..0000000 Binary files a/dist/supersphere.love and /dev/null differ