calc/makefile

11 lines
111 B
Makefile

all: clean build
build:
cargo build --release
run:
cargo run --release
clean:
cargo clean
rm -rf target/