blob: c4030b42cccf197bb036a5925002b0cc2b1d3501 (
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
|
## Makefile.am for the TeX Live subdirectory texk/detex/
##
## Copyright (C) 2009-2012 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
ACLOCAL_AMFLAGS = -I ../../m4
## We want to re-distribute the whole original detex source tree.
EXTRA_DIST = $(DETEX_TREE)
## Patches applied to the original source tree
EXTRA_DIST += $(DETEX_TREE)-PATCHES
# in case of an SVN repository
dist-hook:
rm -rf `find $(distdir) -name .svn`
AM_CPPFLAGS = -I$(top_srcdir)/$(DETEX_TREE) $(KPATHSEA_INCLUDES) -DNO_MALLOC_DECL -DKPATHSEA -Dlint
AM_CFLAGS = $(WARNING_CFLAGS)
## The Makefile.in from 2002 by Thomas Esser applied the sed script
## states.sed to detex.l in order to "convert long labels to a shorter
## form so lex(1) won't overflow". This should no longer be needed.
## Moreover, Automake distributes the `detex.c' generated from `detex.l'.
bin_PROGRAMS = detex
detex_SOURCES = \
$(DETEX_TREE)/detex.h \
$(DETEX_TREE)/detex.l
LDADD = $(KPATHSEA_LIBS)
$(detex_OBJECTS): $(KPATHSEA_DEPEND)
## Rebuild libkpathsea
@KPATHSEA_RULE@
man1_MANS = \
$(DETEX_TREE)/detex.man
dist_check_SCRIPTS = detex.test
TESTS = detex.test
EXTRA_DIST += test.lout test.tex test.tout
CLEANFILES = test.out texmf.cnf
|