# Makefile, for reference.
# This Makefile isn't used during the build of beastie,
# and is present only to document what the various development
# scripts here actually do.
#
# This file is part of Beastie <https://purl.org/nxg/dist/beastie>
# SPDX-FileCopyrightText: 2026 Norman Gray <https://nxg.me.uk>
# SPDX-License-Identifier: BSD-2-Clause

BEASTIE=../../beastie

build/char-table.tex: characters.scm chars-to-latex.scm
	test -d build || mkdir build
	$(BEASTIE) chars-to-latex.scm characters.scm >$@

# show character classes, for reference
build/character-classes.txt: character-class-table.scm
	test -d build || mkdir build
	$(BEASTIE) character-class-table.scm >$@

clean:
	rm -Rf build
