aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 42fce485c2c9f8e72b82fe3f049a5198429d73f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
BIN := term-clock

all: build

.PHONY: run
run: build
	./$(BIN)

.PHONY: build
build:
	go build -o $(BIN)

.PHONY: fmt
fmt:
	go fmt

.PHONY: clean
clean:
	go clean