summaryrefslogtreecommitdiff
path: root/doc/admin/Makefile
blob: 42ffcac31fd41fc839edc9ebdffcbc7ebad63314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
sources = $(wildcard *.mdwn)

all: gitano-admin-doc.pdf gitano-admin-doc.html

gitano-admin-doc.pdf: $(sources) Makefile
	pandoc --standalone --toc --chapters -V documentclass:report -V geometry:margin=1in -V graphics:true -V papersize:a4paper -H titling.tex -H header.tex -o gitano-admin-doc.pdf $(sources)

gitano-admin-doc.html: $(sources) Makefile
	pandoc --toc --standalone --css manual.css -B image.html -o gitano-admin-doc.html $(sources)

clean:
	$(RM) gitano-admin-doc.pdf gitano-admin-doc.html