diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..7e09eeb --- /dev/null +++ b/makefile | |||
@@ -0,0 +1,8 @@ | |||
1 | api-doc: | ||
2 | $(eval TMPDIR := $(shell mktemp -d)) | ||
3 | naturaldocs --project $(TMPDIR) --input include/ --output HTML doc/api/ | ||
4 | $(RM) -r $(TMPDIR) | ||
5 | |||
6 | report: | ||
7 | pandoc --template doc/report-template.tex --number-sections --listings \ | ||
8 | --output doc/project-report.pdf doc/project-report.md | ||