1
0
mirror of https://github.com/taigrr/pastebin synced 2026-04-14 08:18:29 -07:00
Files
pastebin/Makefile
James Mills fd6a5615f0 Fix Makefile
2019-07-11 22:11:33 +10:00

22 lines
225 B
Makefile

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