about summary refs log tree commit diff
path: root/elf/Makefile
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-19 23:47:25 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-19 23:47:25 +0000
commit6bd0638460756557bab2c3c176fd31f5e0ba6e1b (patch)
tree17d10cdd1c425896153d360ac1d6b3a1366738a0 /elf/Makefile
parentdf4d289887774c548345e8c5fe5de64046a00425 (diff)
downloadglibc-6bd0638460756557bab2c3c176fd31f5e0ba6e1b.tar.gz
glibc-6bd0638460756557bab2c3c176fd31f5e0ba6e1b.tar.xz
glibc-6bd0638460756557bab2c3c176fd31f5e0ba6e1b.zip
Update.
	* elf/restest1.c: New file.  Symbol resolution test.
	* elf/testobj1_1.c: New file.  Module used in this test.
	* elf/Makefile: Add rules for restest1 generation and execution.
Diffstat (limited to 'elf/Makefile')
-rw-r--r--elf/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/elf/Makefile b/elf/Makefile
index a43014a4cb..f6da5c47a0 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -75,7 +75,7 @@ others		+= ldconfig
 install-rootsbin += ldconfig
 endif
 
-tests = loadtest
+tests = loadtest restest1
 
 include ../Rules
 
@@ -214,10 +214,12 @@ $(LINK.o) -shared -o $@ $(sysdep-LDFLAGS) $(config-LDFLAGS)  \
 	  $(no-whole-archive) $(LDLIBS-$(@F:%.so=%).so)
 endef
 
-modules-names = testobj1 testobj2 testobj3
+modules-names = testobj1 testobj2 testobj3 testobj1_1
 test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names)))
 generated += $(test-modules)
 
+$(objpfx)testobj1_1.so: $(objpfx)testobj1.so
+LDLIBS-testobj1_1.so = $(objpfx)testobj1.so
 $(objpfx)testobj2.so: $(objpfx)testobj1.so
 LDLIBS-testobj2.so = $(objpfx)testobj1.so
 
@@ -228,6 +230,11 @@ $(objpfx)loadtest: $(objpfx)libdl.so
 LDFLAGS-loadtest = -rdynamic
 
 $(objpfx)loadtest.out: $(test-modules)
+
+$(objpfx)restest1: $(objpfx)libdl.so
+LDFLAGS-restest1 = -rdynamic $(objpfx)testobj1.so $(objpfx)testobj1_1.so
+
+$(objpfx)restest1.out: $(test-modules)
 
 # muwahaha