You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fastgallery/Makefile

13 lines
155 B
Makefile

all: deps test build
deps:
go get ./...
test:
go test -v ./...
build:
go build -o bin/fastgallery cmd/fastgallery/main.go
clean:
rm bin/fastgallery