summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMorgan <morgan.bohn@unistra.fr>2015-09-15 13:42:08 +0200
committerMorgan <morgan.bohn@unistra.fr>2015-09-15 13:42:08 +0200
commite2c33fc218dd3677a7f8366815a6b4de1ff7cde3 (patch)
tree3a326f34cd6e8608eab2d42faf364b0b9d77128e /Makefile
parentexamples from eiro.github.com (diff)
downloadspore.github.io-e2c33fc218dd3677a7f8366815a6b4de1ff7cde3.tar.gz
initial commit
Diffstat (limited to '')
-rw-r--r--Makefile36
1 files changed, 0 insertions, 36 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index d0dbf96..0000000
--- a/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# depth is defined in subdirectories as .., ../.. and so on.
-depth?=.
-include site.mk
-feed= news.html atom.xml unixtips.html unixtips.atom.xml
-
-all: $(basics) $(webpages) theme.css
-
-website: FORCE $(webpages)
-
-FORCE:
- perl6 bin/atom atom > atom.xml
- perl6 bin/atom news > news.md
- cd posts/2015; make
-
-menu: menu.md.
- m4 -I$(depth)/m4 post defs render $< | pandoc -t html5 -o $@
-
-clean:
- rm -f menu $(webpages)
-
-%.css: %.styl
- stylus -c $<
-
-r.html: test_defs.zsh
- zsh test_defs.zsh > r.tap
- tapprouve r.tap > r.html
-
-$(keywords_m4): $(depth)/keywords
- perl bin/m4keys $< > $@
-
-.md.html: $(basics)
- $(htmlify) < $< > $@
-
-snitch:
- @echo mdpages: $(mdpages)
- @echo webpages: $(webpages)