mhmmcontent/Makefile

15 lines
260 B
Makefile
Raw 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