17 lines
151 B
Makefile
17 lines
151 B
Makefile
BUILD=cargo build
|
|
build:
|
|
$(BUILD)
|
|
|
|
css:
|
|
sh scripts/build-sass.sh
|
|
|
|
test:
|
|
cargo test
|
|
|
|
release:
|
|
$(BUILD) --release
|
|
|
|
run:
|
|
# Running server
|
|
cargo run
|