mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 12:07:45 +01:00
12 lines
255 B
Makefile
12 lines
255 B
Makefile
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
|