2003-03-25 03:21:42 +00:00
|
|
|
# -*-Makefile-*-, or close enough
|
2010-07-13 01:20:10 +00:00
|
|
|
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
|
2012-01-16 02:29:20 +00:00
|
|
|
# 2010, 2011, 2012 Free Software Foundation, Inc.
|
2006-02-11 19:02:21 +00:00
|
|
|
# This file is part of GNU Make.
|
|
|
|
#
|
2007-07-04 19:35:15 +00:00
|
|
|
# GNU Make is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License as published by the Free Software
|
|
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
2006-02-11 19:02:21 +00:00
|
|
|
#
|
|
|
|
# GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
2007-07-04 19:35:15 +00:00
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
2006-02-11 19:02:21 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
2007-07-04 19:35:15 +00:00
|
|
|
# this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-07-08 02:26:47 +00:00
|
|
|
|
|
|
|
TEXI2HTML = texi2html
|
|
|
|
TEXI2HTML_FLAGS = -split_chapter
|
|
|
|
|
|
|
|
info_TEXINFOS = make.texi
|
|
|
|
make_TEXINFOS = fdl.texi make-stds.texi
|
|
|
|
|
2002-10-03 05:46:12 +00:00
|
|
|
CLEANFILES = make*.html
|
2002-07-08 02:26:47 +00:00
|
|
|
|
|
|
|
## ----------------------------- ##
|
|
|
|
## Other documentation formats. ##
|
|
|
|
## ----------------------------- ##
|
|
|
|
|
|
|
|
html: make_1.html
|
|
|
|
|
|
|
|
make_1.html: $(info_TEXINFOS) $(make_TEXINFOS)
|
|
|
|
$(TEXI2HTML) $(TEXI2HTML_FLAGS) $(srcdir)/make.texi
|
|
|
|
|
2002-10-03 05:46:12 +00:00
|
|
|
.PHONY: html
|