diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-01-09 09:01:05 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-01-09 09:01:05 +0000 |
commit | 9bcf1e97960c0da7322a868efdbc07e2650716fe (patch) | |
tree | de6d32ad5b0e567991bd3eb262902c15a77074d9 /docs | |
parent | 3b31adf01305e522f7e28c1435fb47418ce43267 (diff) | |
download | ubox-msx-lib-9bcf1e97960c0da7322a868efdbc07e2650716fe.tar.gz ubox-msx-lib-9bcf1e97960c0da7322a868efdbc07e2650716fe.zip |
Extra libs: ap.lib
aPLib support with apultra.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile | 16 | ||||
-rw-r--r-- | docs/extra.md | 5 | ||||
-rw-r--r-- | docs/header.html | 1 |
3 files changed, 16 insertions, 6 deletions
diff --git a/docs/Makefile b/docs/Makefile index 83bb24b..9a928f8 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,18 +1,22 @@ -all: msx-lib-ref.html spman-lib-ref.html mplayer-lib-ref.html +all: ubox-lib-ref.html spman-lib-ref.html mplayer-lib-ref.html extra-lib-ref.html -msx-lib-ref.html: ../include/ubox.h ../tools/hdoc.py footer.md header.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 - pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.ubox.md -o ubox-lib-ref.html + pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.ubox.md -o $@ spman-lib-ref.html: ../include/spman.h ../tools/hdoc.py footer.md spman.md header.html ../tools/hdoc.py --header spman.md --footer footer.md "spman.lib reference" < ../include/spman.h > reference.spman.md - pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.spman.md -o spman-lib-ref.html + pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.spman.md -o $@ mplayer-lib-ref.html: ../include/mplayer.h ../tools/hdoc.py footer.md mplayer.md header.html ../tools/hdoc.py --header mplayer.md --footer footer.md "mplayer.lib reference" < ../include/mplayer.h > reference.mplayer.md - pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.mplayer.md -o mplayer-lib-ref.html + pandoc -s -t html5 -c water.css -c monokai.css --toc --no-highlight -F ../tools/pandocfilter-pygments.py -B header.html reference.mplayer.md -o $@ + +extra-lib-ref.html: ../include/ap.h ../tools/hdoc.py footer.md extra.md header.html + ../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 $@ clean: - rm -f ubox-lib-ref.html spman-lib-ref.html mplayer-lib-ref.html reference.ubox.md reference.spman.md reference.mplayer.md + rm -f *-lib-ref.html reference.*.md .PHONY: clean all diff --git a/docs/extra.md b/docs/extra.md new file mode 100644 index 0000000..914d692 --- /dev/null +++ b/docs/extra.md @@ -0,0 +1,5 @@ +## Overview + +These are a collection of extra libraries that add functionality that can be +useful when making games, but that are not essential. + diff --git a/docs/header.html b/docs/header.html index e8f05d3..fbc15df 100644 --- a/docs/header.html +++ b/docs/header.html @@ -3,4 +3,5 @@ <a href="ubox-lib-ref.html">ubox.lib reference</a> <a href="spman-lib-ref.html">spman.lib reference</a> <a href="mplayer-lib-ref.html">mplayer.lib reference</a> + <a href="extra-lib-ref.html">extra libs reference</a> </nav> |