1
0
mirror of https://github.com/taigrr/shorturl synced 2026-03-21 07:02:17 -07:00
Files
shorturl/Makefile
2017-07-06 22:51:08 -07:00

17 lines
145 B
Makefile

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