Files
dokku/plugins/nginx-vhosts/Makefile

12 lines
255 B
Makefile
Raw Normal View History

GOARCH ?= amd64
BUILD = pagesize
PLUGIN_NAME = nginx-vhosts
clean-pagesize:
rm -rf pagesize
pagesize: clean-pagesize **/**/pagesize.go
GOARCH=$(GOARCH) go build -ldflags="-s -w" $(GO_ARGS) -o pagesize src/pagesize/pagesize.go
include ../../common.mk