Makefile.am revision 44a825a3d5e602f80ecbe072185cc95351891758
1AM_CPPFLAGS = -I$(top_srcdir)/include
2
3noinst_PROGRAMS_common =
4
5if REMOTE_ONLY
6 TESTS_cdep =
7 noinst_PROGRAMS_cdep = $(noinst_PROGRAMS_common)
8else
9if ARCH_IA64
10 noinst_PROGRAMS_arch = ia64-test-sig
11 TESTS_arch = ia64-test-stack ia64-test-rbs
12endif
13 TESTS_cdep = test-dyn1 test-exc test-resume-sig test-setjmp test-ptrace
14 noinst_PROGRAMS_cdep = bt test-init test-varargs
15endif
16
17TESTS = $(TESTS_arch) $(TESTS_cdep)
18
19check_PROGRAMS = $(TESTS)
20
21noinst_PROGRAMS = $(noinst_PROGRAMS_common) $(noinst_PROGRAMS_cdep) \
22	$(noinst_PROGRAMS_arch)
23
24ia64_test_stack_SOURCES = ia64-test-stack.c ia64-test-stack-asm.S
25ia64_test_rbs_SOURCES = ia64-test-rbs.c ia64-test-rbs-asm.S
26
27LDADD = ../src/libunwind-$(arch).la
28
29test_setjmp_LDADD = ../src/libunwind-setjmp.la
30