mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-24 12:19:02 +00:00
8572d6adf0
New version of the manual, put into the doc subdir. Enhancements: $(eval ...) and $(value ...) functions, various bug fixes, etc. See the ChangeLog. More to come.
29 lines
661 B
Makefile
29 lines
661 B
Makefile
## Process this file with automake to create Makefile.in.
|
|
|
|
## Makefile for GNU make documentation.
|
|
## Copyright 2002 Free Software Foundation, Inc.
|
|
|
|
TEXI2HTML = texi2html
|
|
TEXI2HTML_FLAGS = -split_chapter
|
|
|
|
info_TEXINFOS = make.texi
|
|
make_TEXINFOS = fdl.texi make-stds.texi
|
|
|
|
CLEANFILES = make*.html make*.pdf
|
|
|
|
## ----------------------------- ##
|
|
## Other documentation formats. ##
|
|
## ----------------------------- ##
|
|
|
|
html: make_1.html
|
|
|
|
make_1.html: $(info_TEXINFOS) $(make_TEXINFOS)
|
|
$(TEXI2HTML) $(TEXI2HTML_FLAGS) $(srcdir)/make.texi
|
|
|
|
|
|
pdf: make.pdf
|
|
|
|
make.pdf: $(info_TEXINFOS) $(make_TEXINFOS)
|
|
$(TEXI2DVI) --pdf --batch $(srcdir)/make.texi
|
|
|
|
.PHONY: html pdf
|