pastebin/Makefile

14 lines
162 B
Makefile
Raw Normal View History

2017-07-03 06:42:34 +00:00
.PHONY: dev build clean
all: dev
dev: build
./pastebin -bind 127.0.0.1:8000
build: clean
go get ./...
go build -o ./pastebin .
clean:
rm -rf bin pastebin