1
0
mirror of https://github.com/taigrr/pastebin synced 2025-01-18 04:03:18 -08:00
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