1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-07-04 22:35:36 +02:00
libunwind-eh_elf/tests/Makefile.am
mostang.com!davidm 508348e693 (TESTS_arch): Mention ia64-test-rbs.
(ia64_test_rbs_SOURCES): New macro.

(Logical change 1.47)
2003-02-14 06:25:36 +00:00

30 lines
751 B
Makefile

AM_CPPFLAGS = -I$(top_srcdir)/include
noinst_PROGRAMS_common =
if REMOTE_ONLY
TESTS_cdep =
noinst_PROGRAMS_cdep = $(noinst_PROGRAMS_common)
else
if ARCH_IA64
noinst_PROGRAMS_arch = ia64-test-sig
TESTS_arch = ia64-test-rbs ia64-test-stack
endif
TESTS_cdep = test-dyn1 test-exc test-resume-sig test-setjmp test-ptrace
noinst_PROGRAMS_cdep = bt test-init test-varargs
endif
TESTS = $(TESTS_cdep) $(TESTS_arch)
check_PROGRAMS = $(TESTS)
noinst_PROGRAMS = $(noinst_PROGRAMS_common) $(noinst_PROGRAMS_cdep) \
$(noinst_PROGRAMS_arch)
ia64_test_stack_SOURCES = ia64-test-stack.c ia64-test-stack-asm.S
ia64_test_rbs_SOURCES = ia64-test-rbs.c ia64-test-rbs-asm.S
LDADD = ../src/libunwind-$(arch).la
test_setjmp_LDADD = ../src/libunwind-setjmp.la