1
0
mirror of https://github.com/taigrr/shorturl synced 2025-01-18 04:03:16 -08:00
shorturl/Makefile
2017-07-02 22:51:46 -07:00

14 lines
162 B
Makefile

.PHONY: dev build clean
all: dev
dev: build
./shorturl -bind 127.0.0.1:8000
build: clean
go get ./...
go build -o ./shorturl .
clean:
rm -rf bin shorturl