mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
This will reduce the size of binaries in exchange for worse debugging output. This is acceptable for our users and worth it to save money on packagecloud package hosting - which is currently free under a given repository size.
11 lines
180 B
Makefile
11 lines
180 B
Makefile
BUILD = prop
|
|
PLUGIN_NAME = common
|
|
|
|
clean-prop:
|
|
rm -rf prop
|
|
|
|
prop: clean-prop **/**/prop.go
|
|
go build -ldflags="-s -w" $(GO_ARGS) -o prop src/prop/prop.go
|
|
|
|
include ../../common.mk
|