mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-24 12:19:02 +00:00
db401d8e0a
Fixed problems with the dist target (adding missing files). Workaround for a bug in gettext 0.12.1 po/Makefile.in.in where distclean wasn't cleaning everything, which caused distcheck to fail.
20 lines
425 B
Makefile
20 lines
425 B
Makefile
# -*-Makefile-*-, or close enough
|
|
|
|
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
|