2002-03-01 23:15:16 +03:00
|
|
|
# $NetBSD: Makefile,v 1.48 2002/03/01 20:15:16 tv Exp $
|
1996-12-16 23:37:55 +03:00
|
|
|
|
1998-02-23 13:09:31 +03:00
|
|
|
.include <bsd.own.mk> # for OBJECT_FMT definition
|
|
|
|
|
2002-02-04 03:24:14 +03:00
|
|
|
ARCHSUBDIR= ${MACHINE_CPU}
|
1999-03-05 14:57:54 +03:00
|
|
|
M= ${.CURDIR}/arch/${ARCHSUBDIR}
|
1999-03-03 15:00:18 +03:00
|
|
|
|
1999-05-08 02:04:27 +04:00
|
|
|
.if ((${MACHINE_ARCH} == "alpha") || \
|
2001-07-15 07:09:22 +04:00
|
|
|
(${MACHINE_ARCH} == "arm") || \
|
1999-05-08 02:04:27 +04:00
|
|
|
(${MACHINE_ARCH} == "i386") || \
|
|
|
|
(${MACHINE_ARCH} == "m68k") || \
|
|
|
|
(${MACHINE_ARCH} == "mipsel") || (${MACHINE_ARCH} == "mipseb") || \
|
|
|
|
(${MACHINE_ARCH} == "powerpc") || \
|
2002-02-04 02:34:42 +03:00
|
|
|
(${MACHINE_ARCH} == "sh3eb") || (${MACHINE_ARCH} == "sh3el") || \
|
1999-05-08 02:04:27 +04:00
|
|
|
(${MACHINE_ARCH} == "sparc") || \
|
2000-07-03 07:30:52 +04:00
|
|
|
(${MACHINE_ARCH} == "sparc64") || \
|
2001-06-19 05:11:03 +04:00
|
|
|
(${MACHINE_ARCH} == "x86_64") || \
|
2000-07-03 07:30:52 +04:00
|
|
|
(${MACHINE_ARCH} == "vax")) && \
|
1999-05-08 02:04:27 +04:00
|
|
|
${OBJECT_FMT} == "ELF" && ${MKPIC} != "no"
|
|
|
|
|
|
|
|
PROG= ld.elf_so
|
|
|
|
|
1997-10-22 09:45:08 +04:00
|
|
|
# Adds SRCS, CPPFLAGS, LDFLAGS, etc. Must go first so MD startup source
|
1996-12-16 23:37:55 +03:00
|
|
|
# is first.
|
1999-03-03 15:00:18 +03:00
|
|
|
.if exists($M/Makefile.inc)
|
|
|
|
.include "$M/Makefile.inc"
|
1997-04-10 21:39:20 +04:00
|
|
|
.endif
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2002-01-04 22:08:04 +03:00
|
|
|
CLIBOBJ!= cd ${.CURDIR}/../../lib/libc && ${PRINTOBJDIR}
|
|
|
|
|
1996-12-16 23:37:55 +03:00
|
|
|
SRCS+= rtld.c reloc.c symbol.c malloc.c xmalloc.c xprintf.c debug.c \
|
|
|
|
map_object.c load.c search.c headers.c paths.c
|
2001-12-15 01:21:45 +03:00
|
|
|
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
BINDIR=${SHLINKDIR}
|
|
|
|
|
2001-12-15 01:21:45 +03:00
|
|
|
CPPFLAGS+= -DLIBDIR=\"${LIBDIR}\" -D_PATH_RTLD=\"${BINDIR}/${PROG}\"
|
1999-02-24 21:31:00 +03:00
|
|
|
CPPFLAGS+= -I${.CURDIR}
|
1997-10-22 09:45:08 +04:00
|
|
|
CPPFLAGS+= -DDEBUG -DRTLD_LOADER
|
1999-07-05 21:55:34 +04:00
|
|
|
CPPFLAGS+= -D_RTLD_SOURCE
|
2000-07-15 02:01:09 +04:00
|
|
|
#CPPFLAGS+= -DRTLD_DEBUG
|
|
|
|
#CPPFLAGS+= -DRTLD_DEBUG_RELOC
|
2000-11-11 00:31:30 +03:00
|
|
|
#DBG= -g
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2001-12-28 08:44:22 +03:00
|
|
|
.if ${SHLIBDIR} != ${LIBDIR}
|
|
|
|
CPPFLAGS+= -DRTLD_DEFAULT_LIBRARY_PATH=\"${SHLIBDIR}:${LIBDIR}\"
|
|
|
|
.endif
|
|
|
|
|
2002-01-04 22:08:04 +03:00
|
|
|
LDADD+= -L${CLIBOBJ} -L${DESTDIR}${LIBDIR} -non_shared -lc_pic
|
2002-03-01 23:15:16 +03:00
|
|
|
DPADD+= ${CLIBOBJ}/libc_pic.a ${LIBC_PIC}
|
|
|
|
|
|
|
|
# One of these may not exist at link time, so avoid make errors.
|
|
|
|
${DPADD}:
|
|
|
|
@true
|
1996-12-16 23:37:55 +03:00
|
|
|
|
1997-04-18 02:17:27 +04:00
|
|
|
STRIPFLAG=
|
1996-12-16 23:37:55 +03:00
|
|
|
|
1999-03-03 15:00:18 +03:00
|
|
|
.PATH: $M
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2001-01-14 12:39:26 +03:00
|
|
|
${PROG}: ${OBJS} ${DPADD}
|
1996-12-16 23:37:55 +03:00
|
|
|
${LD} ${LDFLAGS} -o ${PROG} ${OBJS} ${LDADD}
|
2001-01-14 12:16:47 +03:00
|
|
|
|
2001-12-28 08:30:24 +03:00
|
|
|
.if ${SHLINKDIR} != "/usr/libexec"
|
|
|
|
SYMLINKS+= ${SHLINKDIR}/${PROG} /usr/libexec/${PROG}
|
|
|
|
.endif
|
|
|
|
|
1996-12-16 23:37:55 +03:00
|
|
|
.include <bsd.prog.mk>
|
2002-01-23 18:10:24 +03:00
|
|
|
.else
|
|
|
|
|
|
|
|
MAN= ld.elf_so.1
|
|
|
|
|
|
|
|
.include <bsd.man.mk>
|
|
|
|
.endif
|