Do not build README.
[mkws-moved-to-github.git] / doc / Makefile
1 # Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com
2 #
3 # To build the PDFs, you will need these Debian packages:
4 #       texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
5
6 DOCS = index.html index.pdf \
7        mkws-manual.html mkws-manual.pdf \
8        mkws-developer.html mkws-developer.pdf
9
10 INSTALLED = $(DOCS:%=../tools/htdocs/%)
11
12 all: $(INSTALLED)
13
14 # For a description of pandoc's markdown format, see:
15 # http://johnmacfarlane.net/pandoc/demo/example9/pandocs-markdown.html
16
17 # for older pandoc (<1.9) run first:
18 # perl -i.bak -npe 's/"(Authors|Subjects)": "(.*?)"/"$1": "test"/' tools/htdocs/mkws-manual.markdown
19 #
20 ../tools/htdocs/%.html: %.markdown tweak-html
21         rm -f $@
22         pandoc --standalone --toc -c mkws-doc.css $< | ./tweak-html > $@
23         chmod ugo-w $@
24
25 # ### In order to compile the manual, which has tables, to PDF,
26 # you will need to install the Debian package
27 #       texlive-latex-recommended
28 ../tools/htdocs/%.pdf: %.markdown
29         rm -f $@
30         pandoc --standalone $< -o $@
31         chmod ugo-w $@
32
33 clean:
34         rm -f $(INSTALLED)
35         rm -f *.drupal.html
36
37 push:
38         pandoc --toc index.markdown > index.drupal.html
39         pandoc --toc mkws-manual.markdown > mkws-manual.drupal.html
40         cat index.drupal.html | ./drupaljson.pl | curl --upload-file - http://www.indexdata.com/script/node/332?services_token=cda1e26e5733ce3f604773e94f0721df5c31a948 -v --header "Content-Type:application/json"
41         cat mkws-manual.drupal.html | ./drupaljson.pl | curl --upload-file - http://www.indexdata.com/script/node/323?services_token=cda1e26e5733ce3f604773e94f0721df5c31a948 -v --header "Content-Type:application/json"
42
43 help:
44         @echo "make [ all | clean | push ]"
45