dee651eb15
to PRECIOUSLIB from bsd.lib.mk. The side effect of this is making installing the world under jail(8) possible by using another knob, NOFSCHG. Reviewed by: oliver
19 lines
603 B
Makefile
19 lines
603 B
Makefile
# $FreeBSD$
|
|
PROG= ld.so
|
|
SRCS= mdprologue.S rtld.c shlib.c md.c support.c
|
|
MAN= rtld.1aout
|
|
# As there is relocation going on behind GCC's back, don't cache function addresses.
|
|
PICFLAG=-fpic -fno-function-cse
|
|
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/${MACHINE_ARCH} ${PICFLAG} -DRTLD -Wall
|
|
LDFLAGS+=-nostdlib -Wl,-Bshareable,-Bsymbolic,-assert,nosymbolic
|
|
ASFLAGS+=-k
|
|
DPADD+= ${LIBC:S/c.a/c_pic.a/} ${LIBC:S/c.a/gcc_pic.a/}
|
|
LDADD+= -lc_pic -lgcc_pic
|
|
INSTALLFLAGS= -C # -C to install as atomically as possible
|
|
PRECIOUSPROG=
|
|
MLINKS= rtld.1aout ld.so.1aout
|
|
|
|
.PATH: ${.CURDIR}/${MACHINE_ARCH}
|
|
|
|
.include <bsd.prog.mk>
|