mhmmcontent/Makefile
Jarek Rozanski 51cbea8c83 Release target
2026-01-28 20:58:48 +01:00

19 lines
No EOL
321 B
Makefile

# Makefile for mhmmcontent project
.PHONY: clean run build
# Clean the project
clean:
cargo clean
# Run the project with port 8989 and ./sample as working directory
run:
cargo run -- --port 8989 --workdir ./sample
# Build the project
build:
cargo build
# Create relase binary
release: clean
cargo build --release