# Makefile for FileMangler Texinfo Help  -  Invoke using "gmake"
# Mahlon R. Smith
# Tools: makeinfo
# 
# 29-Jan-2025

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

# Dependencies for build:
TEXI_FILES = FmgChapter00_Header.texi \
             FmgChapter01_Introduction.texi \
             FmgChapter02_OperationalOverview.texi \
             FmgChapter03_Invoking.texi \
             FmgChapter04_CommandKeyInterface.texi \
             FmgChapter05_MenuSystemInterface.texi \
             FmgChapter06_Configuration.texi \
             FmgChapter07_Installation.texi \
             FmgChapter08_TechnicalSupport.texi \
             same_author.texi \
             gpl-3.0.texi fdl-1.3.texi \
             texi_macros.texi \
             applycss_response.txt

filemangler.info: $(TEXI_FILES)
> makeinfo --fill-column=78 --no-split FmgChapter00_Header.texi
> makeinfo --fill-column=78 --html --no-split FmgChapter00_Header.texi

.PHONY: clean
clean:
> rm -f filemangler.info filemangler.html*
