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