Files
advent-of-code/Makefile
2025-11-26 16:10:41 +01:00

15 lines
162 B
Makefile

GO = go
BIN = bin/aoc
.PHONY: build test clean
build:
@mkdir -p $(dir $(BIN))
@$(GO) build -o $(BIN) ./cmd/aoc
test:
$(GO) test ./...
clean:
rm -f $(BIN)