aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Boerger <thomas@webhippie.de>2016-11-04 23:24:55 +0100
committerGitHub <noreply@github.com>2016-11-04 23:24:55 +0100
commitcda6baf02cea7a8a738185f9e23518bd61138b4d (patch)
tree64125f2c69fcaea95849638cbb26b3bf18945fec /Makefile
parent8e66e09cd84438c31b76297fd9484eb09ed04607 (diff)
parenta46efe240d356a723c09d2332236115dc257da42 (diff)
downloadgitea-cda6baf02cea7a8a738185f9e23518bd61138b4d.tar.gz
gitea-cda6baf02cea7a8a738185f9e23518bd61138b4d.zip
Merge branch 'master' into feature/main.go
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b75732f2e5..8e04204caa 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ LDFLAGS += -X "github.com/go-gitea/gitea/modules/setting.BuildGitHash=$(shell gi
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
+GENERATED := modules/bindata/bindata.go public/css/index.css
TAGS = ""
BUILD_FLAGS = "-v"
@@ -15,7 +15,7 @@ GOVET = go tool vet -composites=false -methods=false -structtags=false
.PHONY: build pack release bindata clean
-.IGNORE: public/css/gogs.css
+.IGNORE: public/css/index.css
all: build
@@ -53,9 +53,9 @@ bindata: modules/bindata/bindata.go
modules/bindata/bindata.go: $(DATA_FILES)
go-bindata -o=$@ -ignore="\\.DS_Store|README.md|TRANSLATORS" -pkg=bindata conf/...
-less: public/css/gogs.css
+less: public/css/index.css
-public/css/gogs.css: $(LESS_FILES)
+public/css/index.css: $(LESS_FILES)
lessc $< $@
clean: