From d37cbfeda063cfd169d858e5dd217f15077dc112 Mon Sep 17 00:00:00 2001 From: Israel Teixeira Date: Thu, 9 Apr 2015 18:20:43 -0300 Subject: [PATCH] Make style.min.css through the "make" command --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..25e634b --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.PHONY: all clean + +all: style.min.css +style.min.css: + sass --update sass/style.sass:style.min.css --stop-on-error --no-cache --style compact + +clean: + rm style.min.css +