Extending makefile to pdf and html output
Heime <[email protected]> Sat, 25 Apr 2026 00:09:07 +0000
| Newsgroups | gmane.comp.tex.texinfo.general |
|---|---|
| Message-ID | <-xNnfAH56h5G_pCkUMcCtkJEA-lzfy3QrkxQcNspM7dbPo12fuIRpFYNRtfdHlJ0EMgAYXshS6FXmTSnqPaqURsUigFswwx5Yn3ZosYU8Bk=@protonmail.com> |
I want to add the production of pdf and html. How would one
change this makefile?
btnver =3D hist-1.0
prxdir =3D ${HOME}/Opfeld/hist/1-devel
srcdir =3D ${prxdir}/${btnver}/orellana/skemaru/antares
trgdir =3D ${HOME}/Opfeld/hist/installs/${btnver}
MAKEINFO =3D makeinfo
MAKEINFOFLAGS =3D --no-split
.PHONY: info
info: $(trgdir)/antares.info
$(trgdir)/%.info: $(srcdir)/%.texi
=09## Make any missing parent directories
=09mkdir -p $(trgdir)
=09$(MAKEINFO) $(MAKEINFOFLAGS) -o $@ $<
clean:
=09rm -f ${trgdir}/antares.info