Files
advent-of-code/Makefile

14 lines
136 B
Makefile

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