mirror of
https://github.com/mirror/make.git
synced 2025-03-15 04:10:35 +08:00
More OS/2 updates from Andreas Buening. Upgrade build system to autoconf 2.57 and automake 1.7.3.
23 lines
451 B
Makefile
23 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
|