~edwargix/tallyard

ref: 837ab8afdd9818adeb3347332b56324b59b1a0cd tallyard/site/Makefile -rw-r--r-- 268 bytes
837ab8af — David Florness site: add Makefile rule to create zip file with static assets 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
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 $@

clean:
	rm -f index.html README.html