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