blob: 9c8082ce003186ee259b85afcb0123c215ff00f7 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
## Makefile.am for the TeX Live subdirectory texk/makeindexk/
##
## Copyright (C) 2009-2011 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
ACLOCAL_AMFLAGS = -I ../../m4
INCLUDES = $(KPATHSEA_INCLUDES)
AM_CPPFLAGS = -DUNIX -DKPATHSEA
AM_CFLAGS = $(WARNING_CFLAGS)
if !WIN32
dist_bin_SCRIPTS = mkindex
endif !WIN32
bin_PROGRAMS = makeindex
makeindex_SOURCES = \
genind.c \
genind.h \
mkind.c \
mkind.h \
qsort.c \
scanid.c \
scanid.h \
scanst.c \
scanst.h \
sortid.c
$(makeindex_OBJECTS): $(KPATHSEA_DEPEND)
LDADD = $(KPATHSEA_LIBS)
## Rebuild libkpathsea
@KPATHSEA_RULE@
dist_man1_MANS = makeindex.1 mkindex.1
EXTRA_DIST = CONTRIB NOTES
## Tests
##
TESTS = tests/nested-range-test.pl
EXTRA_DIST += $(TESTS)
## tests/nested-range-test.pl
EXTRA_DIST += tests/nested-range.tex tests/nested-range.idx \
tests/nested-range-bb.tex tests/nested-range-bb.idx
DISTCLEANFILES =
|