pastebin/Makefile
2017-07-06 22:42:04 -07:00

17 lines
145 B
Makefile

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