summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJoubert RedRat <me+github@redrat.com.br>2016-11-03 16:31:05 -0200
committerJoubert RedRat <me+github@redrat.com.br>2016-11-04 08:53:18 -0200
commitff54e4d929722eb28e053b25fd353ea869ec2f45 (patch)
tree9ecbf93cb841f435ba57d8530971335cbf0f8c3f /Makefile
parentfc55182a4c7dc884e64db1a3e1ed045ac3f6bf9b (diff)
downloadgitea-ff54e4d929722eb28e053b25fd353ea869ec2f45.tar.gz
gitea-ff54e4d929722eb28e053b25fd353ea869ec2f45.zip
Set default less and css to new default name
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b3ee101959..dcd6345f71 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: