# Makefile for 'list' (.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 <ul> and <ol> lists.

# This variable is defined for technical reasons
# (see 'make' documentation for more information)
.RECIPEPREFIX = >

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

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


