Files
ore-calendar/Makefile
ssig33 777b7a101a アプリのリリースビルドおよび配置フローの自動化
- .gitignoreにbuildディレクトリを追加し、ビルド生成物の管理を強化
- xcodebuildのビルドパスを明示指定し、成果物の出力先を統一
- releaseターゲットを追加し、アプリを~/Applicationsへ自動配置するコマンドを追加
2025-10-26 12:23:11 +09:00

13 lines
319 B
Makefile

.PHONY: generate build all
all: build
generate:
xcodegen generate
build: generate
xcodebuild -scheme OreCalendar -destination 'platform=macOS' -derivedDataPath build build
release: build
rm -rf ~/Applications/OreCalendar.app ; true
mv build/Build/Products/Release/OreCalendar.app ~/Applications/OreCalendar.app