add oshw logo to sonar table top holders
[challenge-bot] / Makefile
CommitLineData
b3053d46
WG
1MARKDOWNS := \
2 README.md
3HTMLS := \
4 ${MARKDOWNS:%.md=%.html} \
5 index.html
6PDFS :=\
7 ${HTMLS:%.html=%.pdf}
8
9all: ${HTMLS} ${PDFS}
10 echo HTMLS=${HTMLS}
11 echo PDFS=${PDFS}
12
b6541363 13initial-ubuntu-install:
14 sudo apt-get install -y qrencode fritzing openscad
15
b3053d46
WG
16index.html: README.html
17 cp $< $@
18
d17307a8 19qrcode:
20 qrencode -l L -v 1 -o qr.png "http://tr.im/4lmn8"
21
22qrcode-long:
23 qrencode -l L -v 1 -o qr.png "https://gitorious.org/ozzloy/challenge-bot"
24
b3053d46 25clean:
3f827760 26 rm -f ${HTMLS} ${PDFS} 3d-printables/*.gcode \
27 3d-printables/*.x3g 3d-printables/*.stl
b3053d46
WG
28
29%.html: %.md
30 markdown $< > $@
31
32%.pdf: %.html
a941f5d5 33 htmldoc --numbered --book --no-title --header /// -f $@ $<