blob: 83f52fb008bd1a6e767dab703f2e8a772c4ad701 (
plain)
1
2
3
4
5
6
7
8
|
api-doc:
$(eval TMPDIR := $(shell mktemp -d))
naturaldocs --project $(TMPDIR) --input include/ --input doc/topics/ --output HTML doc/api/
$(RM) -r $(TMPDIR)
report:
pandoc --template doc/report-template.tex --number-sections --listings \
--output doc/project-report.pdf doc/project-report.md
|