# 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
