18 lines
241 B
Makefile
18 lines
241 B
Makefile
default:
|
|
@just hello
|
|
|
|
run:
|
|
@cargo run main
|
|
|
|
bin args='':
|
|
@cargo run --bin {{args}}
|
|
|
|
hello:
|
|
@echo "Hello, world!"
|
|
|
|
watch:
|
|
@cargo watch -c -q -w src -w templates -x run
|
|
|
|
release:
|
|
@cargo build --release
|