diff options
author | Adam Strzelecki <ono@java.pl> | 2015-12-01 22:18:30 +0100 |
---|---|---|
committer | Adam Strzelecki <ono@java.pl> | 2015-12-01 22:18:30 +0100 |
commit | f907a5c98b5e847eddb529eddcc2b5786427c241 (patch) | |
tree | 3c467536dc1f740d1268390f7f42925f713f8a38 /Makefile | |
parent | da607c611de6fb42b88af260d36d2ff442216cd1 (diff) | |
download | gitea-f907a5c98b5e847eddb529eddcc2b5786427c241.tar.gz gitea-f907a5c98b5e847eddb529eddcc2b5786427c241.zip |
Makefile: Auto-build CSS & bin-data when necessary
This will ensure that running `make` we will get all necessary files built and
we do not need manually remember to rebuild them.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -1,6 +1,10 @@ LDFLAGS += -X "github.com/gogits/gogs/modules/setting.BuildTime=$(shell date -u '+%Y-%m-%d %I:%M:%S %Z')" LDFLAGS += -X "github.com/gogits/gogs/modules/setting.BuildGitHash=$(shell git rev-parse HEAD)" +DATA_FILES := $(shell find conf | sed 's/ /\\ /g') +LESS_FILES := $(wildcard public/less/gogs.less public/less/_*.less) +GENERATED := modules/bindata/bindata.go public/css/gogs.css + TAGS = "" RELEASE_ROOT = "release" @@ -9,7 +13,7 @@ NOW = $(shell date -u '+%Y%m%d%I%M%S') .PHONY: build pack release bindata clean -build: +build: $(GENERATED) go install -ldflags '$(LDFLAGS)' -tags '$(TAGS)' cp '$(GOPATH)/bin/gogs' . @@ -25,8 +29,15 @@ pack: release: build pack -bindata: - go-bindata -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README.md" -pkg=bindata conf/... +bindata: modules/bindata/bindata.go + +modules/bindata/bindata.go: $(DATA_FILES) + go-bindata -o=$@ -ignore="\\.DS_Store|README.md" -pkg=bindata conf/... + +less: public/css/gogs.css + +public/css/gogs.css: $(LESS_FILES) + lessc $< $@ clean: go clean -i ./... |