mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 05:09:31 +01:00
Merge pull request #2832 from dankm/build-flags
Make go's build flags a variable
This commit is contained in:
commit
414e5f09c7
1 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
@ -6,6 +6,7 @@ LESS_FILES := $(wildcard public/less/gogs.less public/less/_*.less)
|
||||||
GENERATED := modules/bindata/bindata.go public/css/gogs.css
|
GENERATED := modules/bindata/bindata.go public/css/gogs.css
|
||||||
|
|
||||||
TAGS = ""
|
TAGS = ""
|
||||||
|
BUILD_FLAGS = "-v"
|
||||||
|
|
||||||
RELEASE_ROOT = "release"
|
RELEASE_ROOT = "release"
|
||||||
RELEASE_GOGS = "release/gogs"
|
RELEASE_GOGS = "release/gogs"
|
||||||
|
@ -16,14 +17,14 @@ NOW = $(shell date -u '+%Y%m%d%I%M%S')
|
||||||
.IGNORE: public/css/gogs.css
|
.IGNORE: public/css/gogs.css
|
||||||
|
|
||||||
build: $(GENERATED)
|
build: $(GENERATED)
|
||||||
go install -v -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
|
go install $(BUILD_FLAGS) -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
|
||||||
cp '$(GOPATH)/bin/gogs' .
|
cp '$(GOPATH)/bin/gogs' .
|
||||||
|
|
||||||
govet:
|
govet:
|
||||||
go tool vet -composites=false -methods=false -structtags=false .
|
go tool vet -composites=false -methods=false -structtags=false .
|
||||||
|
|
||||||
build-dev: $(GENERATED) govet
|
build-dev: $(GENERATED) govet
|
||||||
go install -v -race -tags '$(TAGS)'
|
go install $(BUILD_FLAGS) -race -tags '$(TAGS)'
|
||||||
cp '$(GOPATH)/bin/gogs' .
|
cp '$(GOPATH)/bin/gogs' .
|
||||||
|
|
||||||
pack:
|
pack:
|
||||||
|
|
Loading…
Reference in a new issue