
TARGETS = hash-srfi.html subtype-srfi.html

all: $(TARGETS)

%: Makefile

hash-srfi.html: hash-srfi.stx hash-srfi.ss.quoted
	stx2any --link-abbrevs $< >$@

%.quoted: %
	sed -e 's/&/\&amp;/g' -e 's/</\&lt;/g' -e 's/>/\&gt;/g' $< >$@

subtype-srfi.html: subtype-srfi.stx
	stx2any $< >$@

