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

20 lines
233 B
Makefile

ifndef GO
GO := go
endif
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
install:
cp bin/fastgallery ~/.local/bin