mirror of https://github.com/luizdepra/hugo-coder.git

Luiz de Prá
23.49.2018 454ea0146dc6087b9e3b96b4a2f7b66ce1a2f4f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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