From 1bfa0fdbcb74da43730ed93249e16b77a9f85385 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 13 Aug 2020 22:26:05 +0200 Subject: Change static.css to scss. --- static/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 static/Makefile (limited to 'static/Makefile') 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 $< $@ -- cgit v1.2.3