aboutsummaryrefslogtreecommitdiff
path: root/static/Makefile
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-08-13 22:26:05 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-08-13 22:26:05 +0200
commit1bfa0fdbcb74da43730ed93249e16b77a9f85385 (patch)
tree28d50017750e4b5d2ea240c8813967389687de48 /static/Makefile
parentMerge branch 'calchooser' into master (diff)
downloadcalp-1bfa0fdbcb74da43730ed93249e16b77a9f85385.tar.gz
calp-1bfa0fdbcb74da43730ed93249e16b77a9f85385.tar.xz
Change static.css to scss.
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 $< $@