diff options
author | Roland McGrath <roland@gnu.org> | 2003-07-29 08:36:30 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-07-29 08:36:30 +0000 |
commit | 5181d776e8bb3c277ea291b3b43be0ce8a38c6c3 (patch) | |
tree | acdcf5525dff8dcdabe7226d996e304e55c82127 /dlfcn | |
parent | bba446f7e9eb56a9117af5423b872f5de42e4740 (diff) | |
download | glibc-5181d776e8bb3c277ea291b3b43be0ce8a38c6c3.tar.gz glibc-5181d776e8bb3c277ea291b3b43be0ce8a38c6c3.tar.xz glibc-5181d776e8bb3c277ea291b3b43be0ce8a38c6c3.zip |
* elf/Makefile (tests) [$(build-shared) = yes]:
Depend on $(test-modules). * dlfcn/Makefile: Likewise.
Diffstat (limited to 'dlfcn')
-rw-r--r-- | dlfcn/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dlfcn/Makefile b/dlfcn/Makefile index a5793cb731..f55d98b955 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -69,6 +69,11 @@ test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names))) $(test-modules): $(objpfx)%.so: $(objpfx)%.os $(common-objpfx)shlib.lds $(build-module) +ifeq ($(build-shared),yes) +# Build all the modules even when not actually running test programs. +tests: $(test-modules) +endif + $(objpfx)glrefmain: $(libdl) $(objpfx)glrefmain.out: $(objpfx)glrefmain \ $(objpfx)glreflib1.so $(objpfx)glreflib2.so |