aboutsummaryrefslogtreecommitdiff
path: root/elf/Makefile
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-01 21:43:03 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-01 21:43:03 +0000
commitff5fad1641bbd3b76501e01467b179c6aa6421b8 (patch)
tree3053aa71a68d34540fbb7cb4e5e985ddd98cfe61 /elf/Makefile
parent4f2793d41f1043cf04f6761b1da00d8741824087 (diff)
downloadglibc-ff5fad1641bbd3b76501e01467b179c6aa6421b8.zip
glibc-ff5fad1641bbd3b76501e01467b179c6aa6421b8.tar.gz
glibc-ff5fad1641bbd3b76501e01467b179c6aa6421b8.tar.bz2
Update.
* elf/Makefile (tests): Add resolvfail. Add rules to build the program. * elf/resolvfail.c: New file.
Diffstat (limited to 'elf/Makefile')
-rw-r--r--elf/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile
index 5cecc2b..cd0f390 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -71,7 +71,7 @@ install-rootsbin += ldconfig
endif
ifeq (yes,$(build-shared))
-tests = loadtest restest1 preloadtest loadfail multiload origtest
+tests = loadtest restest1 preloadtest loadfail multiload origtest resolvfail
endif
modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
testobj1_1 failobj
@@ -237,3 +237,9 @@ $(objpfx)multiload.out: $(objpfx)testobj1.so
$(objpfx)origtest: $(libdl)
$(objpfx)origtest.out: $(objpfx)testobj1.so
+
+ifeq ($(have-thread-library),yes)
+$(objpfx)resolvfail: $(libdl) $(shared-thread-library)
+else
+$(objpfx)resolvfail: $(libdl)
+endif