aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-12-28 11:43:26 +0100
committerlonkaars <loek@pipeframe.xyz>2022-12-28 11:43:26 +0100
commitec000fcbb7e721bfd2638427d54f56f2dae76316 (patch)
treeca71b2b42caea628cc7cca8bf1961a92830aadb8 /makefile
parentc0f41dd4c74ca4a12252103da0e6de296533e269 (diff)
rename to refold-tools
Diffstat (limited to 'makefile')
-rw-r--r--makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index cef3be7..0000000
--- a/makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-all: back-template.html front-template.html
-
-.PRECIOUS: card.min.js
-
-card.min.js: card/card.js
- sed 's/\/\/.*$$//g' $< | tr '\n' ' ' | sed 's/\t//g' | sed 's/ */ /g' > $@
-
-card.min.css: card/card.css
- cat $< | tr '\n' ' ' | sed 's/\t//g' | sed 's/ */ /g' > $@
-
-%.html: %.m4
- m4 $< > $@
-
-back-template.html: card.min.js card.min.css
-front-template.html: card.min.js card.min.css
-
-clean:
- $(RM) back-template.html front-template.html card.min.js