site: add Makefile rule to create zip file with static assets
2 files changed, 6 insertions(+), 0 deletions(-) M site/.gitignore M site/Makefile
M site/.gitignore => site/.gitignore +1 -0
@@ 1,2 1,3 @@ README.html index.html +tallyard.xyz.zip
M site/Makefile => site/Makefile +5 -0
@@ 1,6 1,11 @@ +all: index.html tallyard.xyz.zip + index.html: index.dhtml README.html sed -e '/$${README}/{r README.html' -e 'd}' index.dhtml > $@ +tallyard.xyz.zip: index.html tallyard.png + zip $@ $^ + README.html: ../README.md pandoc $< -o $@