From 053cda26f27fad06a515cd73f3806c0c913c2649 Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Thu, 25 Apr 2002 06:47:29 +0000 Subject: [PATCH] (noinst_PROGRAMS_arch): New macro to get "sig" built when the target is ia64. (noinst_PROGRAMS): Mention $(noinst_PROGRAMS_arch). (LDADD): Link against architecture-specific name, because symlinks don't exist yet when this directory gets built. (Logical change 1.18) --- tests/Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index ac29351a..3d7695ec 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,7 +5,10 @@ noinst_PROGRAMS_common = if REMOTE_ONLY noinst_PROGRAMS = $(noinst_PROGRAMS_common) else - noinst_PROGRAMS = $(noinst_PROGRAMS_common) bt exc +if ARCH_IA64 + noinst_PROGRAMS_arch = sig +endif + noinst_PROGRAMS = $(noinst_PROGRAMS_common) $(noinst_PROGRAMS_arch) bt exc endif -LDADD = ../src/libunwind.la +LDADD = ../src/libunwind-$(arch).la