1 | ## Process this file with automake to create Makefile.in.
|
---|
2 |
|
---|
3 | ## Makefile for Autoconf.
|
---|
4 | ## Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
---|
5 |
|
---|
6 | ## This program is free software; you can redistribute it and/or modify
|
---|
7 | ## it under the terms of the GNU General Public License as published by
|
---|
8 | ## the Free Software Foundation; either version 2, or (at your option)
|
---|
9 | ## any later version.
|
---|
10 |
|
---|
11 | ## This program is distributed in the hope that it will be useful,
|
---|
12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | ## GNU General Public License for more details.
|
---|
15 |
|
---|
16 | ## You should have received a copy of the GNU General Public License
|
---|
17 | ## along with this program; if not, write to the Free Software
|
---|
18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
---|
19 | ## 02110-1301, USA.
|
---|
20 |
|
---|
21 | AM_MAKEINFOFLAGS = --no-split
|
---|
22 | TEXI2DVI = texi2dvi --batch
|
---|
23 | TEXI2HTML = texi2html
|
---|
24 | TEXI2HTML_FLAGS = -split_chapter
|
---|
25 |
|
---|
26 | info_TEXINFOS = autoconf.texi standards.texi
|
---|
27 | autoconf_TEXINFOS = fdl.texi install.texi
|
---|
28 | standards_TEXINFOS = make-stds.texi
|
---|
29 |
|
---|
30 | # Files from texi2dvi that should be removed, but which Automake does
|
---|
31 | # not know.
|
---|
32 | CLEANFILES = autoconf.ACs autoconf.cvs autoconf.MSs autoconf.prs \
|
---|
33 | autoconf.ATs autoconf.evs autoconf.fns autoconf.ovs \
|
---|
34 | autoconf.tmp \
|
---|
35 | autoconf*.html standards*.html
|
---|
36 |
|
---|
37 |
|
---|
38 | ## ----------------------------- ##
|
---|
39 | ## Other documentation formats. ##
|
---|
40 | ## ----------------------------- ##
|
---|
41 |
|
---|
42 | html: autoconf_1.html standards_1.html
|
---|
43 |
|
---|
44 | autoconf_1.html: autoconf.texi install.texi
|
---|
45 | $(TEXI2HTML) $(TEXI2HTML_FLAGS) $(srcdir)/autoconf.texi
|
---|
46 |
|
---|
47 | standards_1.html: standards.texi make-stds.texi
|
---|
48 | $(TEXI2HTML) $(TEXI2HTML_FLAGS) $(srcdir)/standards.texi
|
---|
49 |
|
---|
50 |
|
---|
51 | .PHONY: html
|
---|