]> git.ipfire.org Git - thirdparty/glibc.git/blob - dlfcn/Makefile
[BZ #77]
[thirdparty/glibc.git] / dlfcn / Makefile
1 # Copyright (C) 1995-2002, 2003, 2004 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
13
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 # 02111-1307 USA.
18
19 subdir := dlfcn
20 headers := bits/dlfcn.h dlfcn.h
21 extra-libs := libdl
22 libdl-routines := dlopen dlclose dlsym dlvsym dlerror dladdr dladdr1 dlinfo \
23 dlmopen
24 distribute := dlopenold.c glreflib1.c glreflib2.c failtestmod.c \
25 defaultmod1.c defaultmod2.c errmsg1mod.c modatexit.c \
26 modcxaatexit.c modstatic.c \
27 bug-dlsym1-lib1.c bug-dlsym1-lib2.c
28
29 extra-libs-others := libdl
30
31 include ../Makeconfig
32
33 ifeq ($(versioning),yes)
34 libdl-routines += dlopenold
35 libdl-shared-only-routines := dlopenold
36 endif
37
38 ifeq (yes,$(build-shared))
39 tests = glrefmain failtest tst-dladdr default errmsg1 tstcxaatexit \
40 bug-dlopen1 bug-dlsym1 tst-dlinfo
41 ifeq (yes,$(have-protected))
42 tests += tstatexit
43 endif
44 endif
45 modules-names = glreflib1 glreflib2 failtestmod defaultmod1 defaultmod2 \
46 errmsg1mod modatexit modcxaatexit \
47 bug-dlsym1-lib1 bug-dlsym1-lib2
48
49 failtestmod.so-no-z-defs = yes
50 glreflib2.so-no-z-defs = yes
51 errmsg1mod.so-no-z-defs = yes
52
53 ifeq (yesyesyes,$(build-static)$(build-shared)$(elf))
54 tests += tststatic
55 tests-static += tststatic
56 modules-names += modstatic
57 tststatic-ENV = LD_LIBRARY_PATH=$(objpfx):$(common-objpfx):$(common-objpfx)elf
58 endif
59
60 extra-objs += $(modules-names:=.os)
61 generated := $(modules-names:=.so)
62
63 include ../Rules
64
65 LDFLAGS-dl.so = -Wl,-dynamic-linker,$(slibdir)/$(rtld-installed-name)
66
67 test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names)))
68 $(test-modules): $(objpfx)%.so: $(objpfx)%.os $(common-objpfx)shlib.lds
69 $(build-module)
70
71 ifeq ($(build-shared),yes)
72 # Build all the modules even when not actually running test programs.
73 tests: $(test-modules)
74 endif
75
76 $(objpfx)glrefmain: $(libdl)
77 $(objpfx)glrefmain.out: $(objpfx)glrefmain \
78 $(objpfx)glreflib1.so $(objpfx)glreflib2.so
79
80 $(objpfx)failtest: $(libdl)
81 $(objpfx)failtest.out: $(objpfx)failtestmod.so
82
83 $(objpfx)tst-dladdr: $(libdl)
84 $(objpfx)tst-dladdr.out: $(objpfx)glreflib1.so
85
86 $(objpfx)tst-dlinfo: $(libdl)
87 $(objpfx)tst-dlinfo.out: $(objpfx)glreflib1.so
88
89 LDFLAGS-default = $(LDFLAGS-rdynamic)
90 $(objpfx)default: $(libdl) $(objpfx)defaultmod1.so $(objpfx)defaultmod2.so
91 $(objpfx)defaultmod1.so: $(libdl) $(common-objpfx)libc_nonshared.a
92 LDFLAGS-defaultmod2.so = $(LDFLAGS-Bsymbolic)
93 $(objpfx)defaultmod2.so: $(libdl) $(common-objpfx)libc_nonshared.a
94
95 $(objpfx)errmsg1: $(libdl)
96 $(objpfx)errmsg1.out: $(objpfx)errmsg1 $(objpfx)errmsg1mod.so
97
98 $(objpfx)tstatexit: $(libdl)
99 $(objpfx)tstatexit.out: $(objpfx)tstatexit $(objpfx)modatexit.so
100
101 $(objpfx)tstcxaatexit: $(libdl)
102 $(objpfx)tstcxaatexit.out: $(objpfx)tstcxaatexit $(objpfx)modcxaatexit.so
103
104 $(objpfx)modatexit.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a
105
106 $(objpfx)tststatic: $(objpfx)libdl.a
107 $(objpfx)tststatic.out: $(objpfx)tststatic $(objpfx)modstatic.so
108
109 $(objpfx)modstatic.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a
110
111 $(objpfx)bug-dlopen1: $(libdl)
112
113 $(objpfx)bug-dlsym1: $(libdl) $(objpfx)bug-dlsym1-lib2.so
114 $(objpfx)bug-dlsym1.out: $(objpfx)bug-dlsym1-lib1.so \
115 $(objpfx)bug-dlsym1-lib2.so
116 $(objpfx)bug-dlsym1-lib1.so: $(objpfx)bug-dlsym1-lib2.so \
117 $(common-objpfx)libc.so \
118 $(common-objpfx)libc_nonshared.a
119 $(objpfx)bug-dlsym1-lib2.so: $(common-objpfx)libc.so \
120 $(common-objpfx)libc_nonshared.a
121
122
123
124 # Depend on libc.so so a DT_NEEDED is generated in the shared objects.
125 # This ensures they will load libc.so for needed symbols if loaded by
126 # a statically-linked program that hasn't already loaded it.
127 $(objpfx)libdl.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a \
128 $(if $(filter yes,$(elf)), $(elfobjdir)/ld.so)