aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 18 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 17e424d..c235179 100644
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,26 @@
-GIT_COMMIT ?= $(shell git rev-parse --short HEAD)
-LDFLAGS := "-X 'git.gabrielgio.me/cerrado/templates.Slug=.$(GIT_COMMIT)' -s -w"
+GIT_COMMIT ?= $(shell git rev-parse --short HEAD)
+LDFLAGS := "-X 'git.gabrielgio.me/cerrado/templates.Slug=.$(GIT_COMMIT)' -s -w"
-TEMPLATES_DIR := templates
-TEMPLATES := $(wildcard $(TEMPLATES_DIR)/*.qtpl)
-GO_TEMPLATES_FILES := $(TEMPLATES:.qtpl=.qtpl.go)
+BIN ?= cerrado
+PREFIX ?= /usr/local
+BINDIR ?= $(PREFIX)/bin
-SASS_DIR := scss
-CSS_DIR := static
-OUTPUT_CSS := $(CSS_DIR)/main.$(GIT_COMMIT).css
-SASS_FILES := $(wildcard $(SASS_DIR)/*.scss)
+TEMPLATES_DIR := templates
+TEMPLATES := $(wildcard $(TEMPLATES_DIR)/*.qtpl)
+GO_TEMPLATES_FILES := $(TEMPLATES:.qtpl=.qtpl.go)
+
+SASS_DIR := scss
+CSS_DIR := static
+OUTPUT_CSS := $(CSS_DIR)/main.$(GIT_COMMIT).css
+SASS_FILES := $(wildcard $(SASS_DIR)/*.scss)
build: sass tmpl
go build \
-ldflags=$(LDFLAGS) \
- -o bin/cerrado
+ -o bin/$(BIN)
+
+install:
+ install -Dm755 bin/$(BIN) $(BINDIR)/$(BIN)
run: sass tmpl
go run .
@@ -34,5 +41,6 @@ $(TEMPLATES_DIR)/%.qtpl.go: $(TEMPLATES_DIR)/%.qtpl
clean:
rm -f $(OUTPUT_CSS)
+ rm bin/$(BIN)
.PHONY: sass tmpl