pastebin/Makefile
2019-07-11 22:11:33 +10:00

20 lines
177 B
Makefile

.PHONY: dev build install clean
all: dev
dev: build
./pastebin
build: clean
go get ./...
go build .
install:
go install .
test:
go test ./...
clean:
rm -rf pastebin