blob: 4fb76fddb7bc019ec96fb5c1fcdbfcdeb2385125 (
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
|
## Makefile.am for the TeX Live subdirectory texk/xdvik/tests/
##
## Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
##
include ../common.am
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gui $(common_includes)
check_PROGRAMS = run_tests
TESTS = $(check_PROGRAMS)
run_tests_SOURCES = \
run_tests.c \
run_tests.h \
test_dl_list.c \
test_string_list.c \
test_string_utils.c \
test_util.c
run_tests_DEPENDENCIES = ../libxdvi.a ../gui/libgui.a $(common_dependencies)
LDADD = ../libxdvi.a ../gui/libgui.a $(common_ldadd)
../libxdvi.a: $(libxdvi_dependencies)
cd .. && $(MAKE) $(AM_MAKEFLAGS) libxdvi.a
../gui/libgui.a: $(libgui_dependencies)
cd ../gui && $(MAKE) $(AM_MAKEFLAGS) libgui.a
## Not used
##
EXTRA_DIST = test1.c
|