# Makefile for 'block' (.info and .html output)
# Invoke using 'gmake'
# Mahlon R. Smith
# Tools: makeinfo (version 7.1.1 or higher recommended)
# 
# 03-Aug-2025
# 
# This is a temporary document for testing the types of 
# text blocks defined within the Texinfo language.

.RECIPEPREFIX = >

block.info: block.texi ../../texi_macros.texi
> makeinfo --fill-column=78 --no-split block.texi
> makeinfo --fill-column=78 --html --no-split block.texi

#** Remove old object files and the executable for a clean build **
.PHONY: clean
clean:
> rm -f block.info block.html 1>/dev/null 2>/dev/null


