15 lines
262 B
Makefile
15 lines
262 B
Makefile
.PHONY: run clean deploy install
|
|
|
|
run:
|
|
cargo run --bin galaxy-oss
|
|
|
|
# Explicit cleanup; deploy and install preserve Cargo build artifacts.
|
|
clean:
|
|
cargo clean
|
|
|
|
deploy:
|
|
./script/build-and-upload-hermes.sh
|
|
|
|
install:
|
|
./script/build-and-install-to-applications.sh
|