mhmmcontent/Makefile

19 lines
321 B
Makefile
Raw Permalink Normal View History

2026-01-28 20:56:35 +01:00
# 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
2026-01-28 20:58:48 +01:00
# Create relase binary
release: clean
cargo build --release