mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-13 15:54:10 +09:00
18 lines
337 B
Makefile
18 lines
337 B
Makefile
.PHONY: build
|
|
.SILENT: build
|
|
|
|
build:
|
|
rm -rf ./build
|
|
|
|
xcodebuild \
|
|
-project ../Stats.xcodeproj \
|
|
-scheme SMC \
|
|
-destination 'platform=OS X,arch=x86_64' \
|
|
-configuration Release archive \
|
|
-archivePath ./build/smc.xcarchive \
|
|
SKIP_INSTALL=NO
|
|
|
|
cp ./build/smc.xcarchive/Products/usr/local/bin/smc ./
|
|
|
|
rm -rf ./build
|