Files
swift-hpa/justfile

26 lines
326 B
Makefile

build mode="debug":
swift build -c {{mode}}
alias b := build
test *ARGS:
swift test {{ARGS}}
alias t := test
run *ARGS:
swift run hpa {{ARGS}}
alias r := run
clean:
rm -rf .build
update-version:
@swift package \
--disable-sandbox \
--allow-writing-to-package-directory \
update-version \
hpa