gogs/Makefile

84 lines
1.9 KiB
Makefile
Raw Normal View History

LDFLAGS += -X "github.com/gogits/gogs/pkg/setting.BuildTime=$(shell date -u '+%Y-%m-%d %I:%M:%S %Z')"
LDFLAGS += -X "github.com/gogits/gogs/pkg/setting.BuildGitHash=$(shell git rev-parse HEAD)"
2015-11-03 20:16:43 +03:00
DATA_FILES := $(shell find conf | sed 's/ /\\ /g')
LESS_FILES := $(wildcard public/less/gogs.less public/less/_*.less)
GENERATED := pkg/bindata/bindata.go public/css/gogs.css
OS := $(shell uname)
2015-11-03 20:16:43 +03:00
TAGS = ""
BUILD_FLAGS = "-v"
2015-11-03 20:16:43 +03:00
RELEASE_ROOT = "release"
RELEASE_GOGS = "release/gogs"
NOW = $(shell date -u '+%Y%m%d%I%M%S')
2016-08-06 21:20:10 +03:00
GOVET = go tool vet -composites=false -methods=false -structtags=false
2015-11-03 20:16:43 +03:00
.PHONY: build pack release bindata clean
2015-11-03 20:16:43 +03:00
.IGNORE: public/css/gogs.css
all: build
check: test
dist: release
2017-04-06 07:14:30 +03:00
web: build
./gogs web
2015-11-08 22:31:49 +03:00
govet:
$(GOVET) gogs.go
$(GOVET) models pkg routers
2015-11-08 22:31:49 +03:00
2016-08-06 21:20:10 +03:00
build: $(GENERATED)
go install $(BUILD_FLAGS) -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
cp '$(GOPATH)/bin/gogs' .
2016-08-06 21:20:10 +03:00
build-dev: $(GENERATED) govet
2016-07-25 21:48:17 +03:00
go install $(BUILD_FLAGS) -tags '$(TAGS)'
cp '$(GOPATH)/bin/gogs' .
2016-08-06 21:20:10 +03:00
build-dev-race: $(GENERATED) govet
go install $(BUILD_FLAGS) -race -tags '$(TAGS)'
cp '$(GOPATH)/bin/gogs' .
2015-11-03 20:16:43 +03:00
pack:
rm -rf $(RELEASE_GOGS)
mkdir -p $(RELEASE_GOGS)
cp -r gogs LICENSE README.md README_ZH.md templates public scripts $(RELEASE_GOGS)
rm -rf $(RELEASE_GOGS)/public/config.codekit $(RELEASE_GOGS)/public/less
cd $(RELEASE_ROOT) && zip -r gogs.$(NOW).zip "gogs"
release: build pack
bindata: pkg/bindata/bindata.go
pkg/bindata/bindata.go: $(DATA_FILES)
go-bindata -o=$@ -ignore="\\.DS_Store|README.md|TRANSLATORS" -pkg=bindata conf/...
less: public/css/gogs.css
public/css/gogs.css: $(LESS_FILES)
lessc $< $@
2015-11-03 20:16:43 +03:00
clean:
2015-11-08 22:31:49 +03:00
go clean -i ./...
clean-mac: clean
find . -name ".DS_Store" -print0 | xargs -0 rm
test:
go test -cover -race ./...
2016-03-07 00:40:04 +03:00
fixme:
grep -rnw "FIXME" cmd routers models pkg
2016-03-07 00:40:04 +03:00
todo:
grep -rnw "TODO" cmd routers models pkg
# Legacy code should be remove by the time of release
legacy:
grep -rnw "LEGACY" cmd routers models pkg