r7rs-small-texinfo

Unnamed repository; edit this file 'description' to name the repository.
git clone https://kaka.farm/~git/r7rs-small-texinfo
Log | Files | Refs | README

commit b055c729d30766561a71f7b2b260c550da08513a
parent 85eb56b2706884b3020cfa6896fc57254d740254
Author: Wolfgang Corcoran-Mathe <wcm@sigwinch.xyz>
Date:   Wed,  7 Feb 2024 14:35:18 -0500

Remove Makefile.

This is a bad fit for Texinfo. Dependencies weren't correctly
tracked, and split targets required phony rules.

Diffstat:
Ddoc/r7rs-small/Makefile | 33---------------------------------
1 file changed, 0 insertions(+), 33 deletions(-)

diff --git a/doc/r7rs-small/Makefile b/doc/r7rs-small/Makefile @@ -1,33 +0,0 @@ -.PHONY: all clean - -MAKEINFO = makeinfo - -# How math should be rendered in HTML output. See "Inserting Math" -# in the Texinfo manual for the available methods. -HTML_MATH = mathjax - -MAKEINFOFLAGS = --no-split\ - --set-customization-variable HTML_MATH=$(HTML_MATH) - -MAKEINFO_SPLIT_HTML_FLAGS = --output=r7rs-small-split-html\ - --set-customization-variable HTML_MATH=$(HTML_MATH) - -all: r7rs-small.html r7rs-small.info r7rs-small.pdf r7rs-small-split-html - -r7rs-small.html: r7rs-small.texinfo - $(MAKEINFO) $(MAKEINFOFLAGS) --html $< - -r7rs-small.info: r7rs-small.texinfo - $(MAKEINFO) $(MAKEINFOFLAGS) --info $< - -r7rs-small.pdf: r7rs-small.texinfo - $(MAKEINFO) $(MAKEINFOFLAGS) --pdf $< - -# Make confuses underscores with dots, so target cannot be the default r7rs-small_html. -r7rs-small-split-html: r7rs-small.texinfo - $(MAKEINFO) $(MAKEINFO_SPLIT_HTML_FLAGS) --html $< - -clean: - rm -f r7rs-small.aux r7rs-small.fn r7rs-small.fns\ - r7rs-small.html r7rs-small.log r7rs-small.toc\ - r7rs-small.pdf r7rs-small.info