aboutsummaryrefslogtreecommitdiff
path: root/static/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'static/Makefile')
-rw-r--r--static/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/static/Makefile b/static/Makefile
new file mode 100644
index 00000000..f848b784
--- /dev/null
+++ b/static/Makefile
@@ -0,0 +1,11 @@
+.PHONY: all clean
+
+TARGETS := style.css
+
+all: $(TARGETS)
+
+clean:
+ rm $(TARGETS)
+
+%.css: %.scss
+ scss $< $@