From cd54212f23f1d3d1e654a12aa75c12bff5965b44 Mon Sep 17 00:00:00 2001 From: progandy Date: Mon, 20 Oct 2014 10:23:51 +0200 Subject: [PATCH] Simplistic Makefile to call sass --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e5f44c6 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +SASS=sass + +css: + $(SASS) --update gtk-3.0/scss:gtk-3.0/gen + +all: css + + +.PHONY: css +# vim: set ts=4 sw=4 tw=0 noet :