* sysdeps/m68k/dl-machine.h (_dl_start_user): Pass correct
[glibc.git] / dlfcn / Makefile
blob2be68dd0c1cc26eb7442d6c7b90a10cccf3107d3
1 # Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
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 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
19 subdir := dlfcn
20 headers := bits/dlfcn.h dlfcn.h
21 extra-libs := libdl
22 libdl-routines := dlopen dlclose dlsym dlvsym dlerror dladdr eval
23 distribute := dlopenold.c glreflib1.c glreflib2.c failtestmod.c eval.c \
24 defaultmod1.c defaultmod2.c
26 extra-libs-others := libdl
28 include ../Makeconfig
30 ifeq ($(versioning),yes)
31 libdl-routines += dlopenold
32 libdl-shared-only-routines := dlopenold
33 endif
34 libdl-shared-only-routines += eval
36 ifeq (yes,$(build-shared))
37 tests = glrefmain failtest tst-dladdr default
38 endif
39 modules-names = glreflib1 glreflib2 failtestmod defaultmod1 defaultmod2
40 extra-objs += $(modules-names:=.os) eval.os
41 generated := $(modules-names:=.so)
43 include ../Rules
45 LDFLAGS-dl.so = -Wl,-dynamic-linker,$(slibdir)/$(rtld-installed-name)
47 test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names)))
48 $(test-modules): $(objpfx)%.so: $(objpfx)%.os
49 $(build-module)
51 $(objpfx)glrefmain: $(libdl)
52 $(objpfx)glrefmain.out: $(objpfx)glrefmain \
53 $(objpfx)glreflib1.so $(objpfx)glreflib2.so
55 $(objpfx)failtest: $(libdl)
56 $(objpfx)failtest.out: $(objpfx)failtestmod.so
58 $(objpfx)tst-dladdr: $(libdl)
59 $(objpfx)tst-dladdr.out: $(objpfx)glreflib1.so
61 LDFLAGS-default = -rdynamic
62 $(objpfx)default: $(libdl) $(objpfx)defaultmod1.so $(objpfx)defaultmod2.so
63 $(objpfx)defaultmod1.so: $(libdl)
64 LDFLAGS-defaultmod2.so = -Bsymbolic
65 $(objpfx)defaultmod2.so: $(libdl)