blob: b7bb6243b8c17be9ecde22b64827012d7850657b (
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
|
## $Id: Makefile.am 63190 2022-04-30 22:15:57Z karl $
## Makefile.am for the TeX Live subdirectory utils/lacheck/
##
## Copyright 2015-2022 Karl Berry <tex-live@tug.org>
## Copyright 2009-2015 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
AM_CFLAGS = $(WARNING_CFLAGS)
bin_PROGRAMS = lacheck
lacheck_SOURCES = lacheck.l
## Manpage
nodist_man1_MANS = lacheck.1
## Test
#
# To remake in the build directory even though maintainer mode is
# enabled (where $xu is the texk/utils source directory):
# cd Work/utils/lacheck && make am__skiplex= all \
# && ./lacheck $xu/lacheck/test-def.tex
# (or make check, etc.).
#
TESTS = lacheck.test test-def.test
dist_check_SCRIPTS = $(TESTS)
lacheck.log: lacheck$(EXEEXT)
EXTRA_DIST = test.old test.tex test-def.tex test-def.xout
CLEANFILES = test.out test-def.out
## Not used
EXTRA_DIST += lacheck.hlp make_vms.com
|