aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: e3ed19e0cdbc143c4992c36be62a00cf8cd29b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BIN?=apkdoc
GO_RUN?= go run -v
GO_BUILD?= go build -v

all: build

run:
	$(GO_RUN) .

build:
	$(GO_BUILD) \
		-o bin/$(BIN) \
		.