mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-05 14:07:46 +00:00
More OS/2 updates from Andreas Buening. Upgrade build system to autoconf 2.57 and automake 1.7.3.
22 lines
451 B
Makefile
22 lines
451 B
Makefile
# -*-Makefile-*-, or close enough
|
|
|
|
AUTOMAKE_OPTIONS = 1.7.3
|
|
|
|
TEXI2HTML = texi2html
|
|
TEXI2HTML_FLAGS = -split_chapter
|
|
|
|
info_TEXINFOS = make.texi
|
|
make_TEXINFOS = fdl.texi make-stds.texi
|
|
|
|
CLEANFILES = make*.html
|
|
|
|
## ----------------------------- ##
|
|
## Other documentation formats. ##
|
|
## ----------------------------- ##
|
|
|
|
html: make_1.html
|
|
|
|
make_1.html: $(info_TEXINFOS) $(make_TEXINFOS)
|
|
$(TEXI2HTML) $(TEXI2HTML_FLAGS) $(srcdir)/make.texi
|
|
|
|
.PHONY: html
|