From 977da275b5b361044818c1ec70a7d2237503546c Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Fri, 28 Nov 2014 12:30:45 +0200 Subject: introduce sass - only changes are whitespace and curly after last rule (sassism) No method to automaticall run sass once scss file changes right now. Should probably use grunt, I think it does it. (or have an inotify based make background task). Tested with sass 3.4.9 (latest) but since I'm not using sass yet (the scss file is our former css file) it should work with other versions too. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..77f241d4 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +%.css: %.scss + sass $< $@ + +res/css/style.css: res/css/style.scss -- cgit v1.3.1