diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-03-17 02:17:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-03-17 02:17:59 +0000 |
commit | 19cf43bed69d9952c39391f42f22114afb3a0d3f (patch) | |
tree | 15725e3712fc919ec7d670c42ba0e66d5d41e53d /elf/Makefile | |
parent | 13a836048c08f552187f2172cb362fb98f42c965 (diff) | |
download | glibc-19cf43bed69d9952c39391f42f22114afb3a0d3f.tar.gz glibc-19cf43bed69d9952c39391f42f22114afb3a0d3f.tar.xz glibc-19cf43bed69d9952c39391f42f22114afb3a0d3f.zip |
Update.
2000-03-16 Ulrich Drepper <drepper@redhat.com> * elf/Makefile: Add rules to compile and rune constload1 test. * elf/constload1.c: New file. * elf/constload2.c: New file. * elf/constload3.c: New file.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/elf/Makefile b/elf/Makefile index b262418d19..1244e239b6 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. +# Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -79,10 +79,11 @@ vpath %.c ../locale/programs endif ifeq (yes,$(build-shared)) -tests = loadtest restest1 preloadtest loadfail multiload origtest resolvfail +tests = loadtest restest1 preloadtest loadfail multiload origtest resolvfail \ + constload1 endif modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \ - testobj1_1 failobj + testobj1_1 failobj constload2 constload3 extra-objs += $(modules-names:=.os) include ../Rules @@ -251,3 +252,6 @@ $(objpfx)resolvfail: $(libdl) $(shared-thread-library) else $(objpfx)resolvfail: $(libdl) endif + +$(objpfx)constload1: $(libdl) +$(objpfx)constload1.out: $(objpfx)constload2.so $(objpfx)constload3.so |