diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-06-08 19:54:22 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-06-08 19:54:49 +0100 |
commit | ae19de1c2dcc160495fcffb198f9266cd52a36a5 (patch) | |
tree | d19e2adc73399c3840c320a4993bd39ffa68e8ca /docs/Makefile | |
parent | ca9f36b82d7987546efd60acfaac22e3fd834f16 (diff) | |
download | ubox-msx-lib-ae19de1c2dcc160495fcffb198f9266cd52a36a5.tar.gz ubox-msx-lib-ae19de1c2dcc160495fcffb198f9266cd52a36a5.zip |
Tools doc placeholder
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/Makefile b/docs/Makefile index 9a928f8..41c9732 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,4 +1,4 @@ -all: ubox-lib-ref.html spman-lib-ref.html mplayer-lib-ref.html extra-lib-ref.html +all: ubox-lib-ref.html spman-lib-ref.html mplayer-lib-ref.html extra-lib-ref.html tools-ref.html ubox-lib-ref.html: ../include/ubox.h ../tools/hdoc.py footer.md header.html ../tools/hdoc.py --footer footer.md "ubox.lib reference" < ../include/ubox.h > reference.ubox.md @@ -16,6 +16,10 @@ extra-lib-ref.html: ../include/ap.h ../tools/hdoc.py footer.md extra.md header.h ../tools/hdoc.py --header extra.md --footer footer.md "extra libs reference" < ../include/ap.h > reference.extra.md pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.extra.md -o $@ +tools-ref.html: ../tools/hdoc.py footer.md tools.md header.html + ../tools/hdoc.py --header tools.md --footer footer.md "tools reference" < /dev/null > reference.tools.md + pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.tools.md -o $@ + clean: rm -f *-lib-ref.html reference.*.md |