blob: fac3d3074a19228145baa121143d66783c58e2d8 (
plain)
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
|
# $Id: Makefile.am,v 1.4 2002/06/10 13:51:03 espie Exp $
# Makefile.am for texinfo/makeinfo.
# Run automake in .. to produce Makefile.in from this.
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
bin_PROGRAMS = makeinfo
localedir = $(datadir)/locale
INCLUDES = -I$(top_srcdir)/lib -I../intl -DLOCALEDIR=\"$(localedir)\"
LDADD = ../lib/libtxi.a @LIBINTL@
makeinfo_SOURCES = \
cmds.c cmds.h defun.c defun.h docbook.c docbook.h \
files.c files.h footnote.c footnote.h \
html.c html.h index.c index.h insertion.c insertion.h lang.c lang.h \
macro.c macro.h makeinfo.c makeinfo.h multi.c node.c node.h \
sectioning.c sectioning.h toc.c toc.h xml.c xml.h
pkgdata_DATA = texinfo.dtd texinfo.xsl
EXTRA_DIST = README $(pkgdata_DATA)
SUBDIRS = tests
|