1
0
mirror of https://github.com/taigrr/shorturl synced 2025-01-18 04:03:16 -08:00
shorturl/Makefile

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