1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-26 03:11:44 +02:00
libunwind-eh_elf/tests/Makefile.am
mostang.com!davidm 282413e6ab (TESTS_cdep): New macro for configuration-depedent tests.
(noinst_PROGRAMS_cdep): New macro for config-dependent noinst-programs.
(TESTS_arch): New macro for architecture-specific tests.
(TESTS): New macro, so we can run "make check".
(check_PROGRAMS): New macro.

(Logical change 1.42)
2003-01-23 18:47:51 +00:00

27 lines
610 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-stack
endif
TESTS_cdep = test-dyn1
noinst_PROGRAMS_cdep = bt exc test-init test-varargs test-dyn1 test-resume-sig
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
LDADD = ../src/libunwind-$(arch).la