aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLuiz de Prá <luiz.pra@olist.com>2018-03-23 16:49:06 -0300
committerLuiz de Prá <luiz.pra@olist.com>2018-03-23 16:49:06 -0300
commit454ea0146dc6087b9e3b96b4a2f7b66ce1a2f4f7 (patch)
tree30f0b68d864790e7ec97fc98231f029a221c8671 /Makefile
parentd3e619ecf9d451c7b6574a53d13555ac2faffdd5 (diff)
downloadhugo-coder-master.tar.gz
hugo-coder-master.tar.bz2
hugo-coder-master.zip
Add Makefile to build CSSHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4c4b6b9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+LESS_DIR = ./static/less
+LESS_FILE = style.less
+CSS_DIR = ./static/css
+CSS_FILE = style.min.css
+CSS_TMP_FILE = tmp.css
+
+
+.PHONY: clean build
+
+build: clean
+ lessc $(LESS_DIR)/$(LESS_FILE) > $(CSS_DIR)/$(CSS_TMP_FILE)
+ uglifycss $(CSS_DIR)/$(CSS_TMP_FILE) > $(CSS_DIR)/$(CSS_FILE)
+ rm -f $(CSS_DIR)/$(CSS_TMP_FILE)
+
+clean:
+ rm -f $(CSS_DIR)/*.css