1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# Makefile for Recode documentation.
# Copyright © 1994-2019 Free Software Foundation, Inc.
# François Pinard <pinard@iro.umontreal.ca>
# This program 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, or (at your option)
# any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.
AUTOMAKE_OPTIONS = gnits
info_TEXINFOS = recode.texi
recode_TEXINFOS = rfc1345.texi
EXTRA_DIST = File-Latin1
MOSTLYCLEANFILES = recode.ops
# Relative to $(srcdir).
KELD = ../keld
CHARSETS_DEF = $(KELD)/charsets.def
MNEMONICS_DS = $(KELD)/iso10646.def $(KELD)/other.def $(KELD)/control.def
TABLES_PY = $(PYTHON) $(top_srcdir)/tables.py
# Disable dvi target, to avoid needing TeX for make distcheck
# (and in any case, no-one wants DVI)
dvi:
# There is duplication of work with making src/strip-{pool,data}.c.
# This used to be combined, but it seems clearer to keep both separate.
rfc1345.texi: ../tables.py $(MNEMONICS_DS) $(CHARSETS_DEF)
$(TABLES_PY) -C $(srcdir) -t $(MNEMONICS_DS) $(CHARSETS_DEF)
fr-rfc1345.texi: ../tables.py $(MNEMONICS_DS) $(CHARSETS_DEF)
$(TABLES_PY) -C $(srcdir) -Ft $(MNEMONICS_DS) $(CHARSETS_DEF)
|