aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: e6c3c4cdb6ff1e0f129370c7e215754c52521f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
test:
	go test -tags=unit .

doc:
	godoc \
		-goroot=${PWD} \
		-templates="./docs" \
		-url="/pkg/git.sr.ht/~gabrielgio/pipe/" \
		> index.html

examples: countlines

countlines:
	go build -o bin/coutlines ./examples/countlines.go