diff options
author | pacien | 2017-11-28 17:41:56 +0100 |
---|---|---|
committer | pacien | 2017-11-28 18:55:08 +0100 |
commit | ac60669cd3a93312f0ff186055e61a5e3fb5fcdd (patch) | |
tree | c91dc155449e15101c9187c03c689ac42b88cd43 /makefile | |
parent | d6b00e0fbda7778ee25cb70ae5beb9fe824d2e69 (diff) | |
download | morpher-ac60669cd3a93312f0ff186055e61a5e3fb5fcdd.tar.gz |
Add api-doc and report template + their recipes
Signed-off-by: pacien <pacien.trangirard@pacien.net>
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 | ||