summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6f6845463956cda42bf1148cb2218a71f63921cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: clean setup build test

syslogs:
	@go build -o syslogs ./cmd/syslogs/main.go

which:
	@go build -o which ./cmd/which/main.go

clean:
	@rm -f syslogs which

build: syslogs which

test:
	@go clean -testcache
	@go test -shuffle=on ./...