1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Project name (change if needed) APP_NAME := leetrs # Output directory BIN_DIR := custom-bin build: cargo build --release cp target/release/$(APP_NAME) ~/$(BIN_DIR)/ clean: cargo clean run: cargo run .PHONY: build clean run