diff options
author | jb <jb@FreeBSD.org> | 1998-09-05 08:31:10 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-09-05 08:31:10 +0000 |
commit | 3e545efab0462ace0c0cd57fbea8d968755fac74 (patch) | |
tree | 265330dfd1c6b10e48b457e07c61521f32761396 /libexec/rtld-aout | |
parent | 343f602fe0b2ab64f27a153b1d7026a5b2751d3a (diff) | |
download | FreeBSD-src-3e545efab0462ace0c0cd57fbea8d968755fac74.zip FreeBSD-src-3e545efab0462ace0c0cd57fbea8d968755fac74.tar.gz |
Chaneg MACHINE to MACHINE_ARCH to support MACHINE=pc98.
Diffstat (limited to 'libexec/rtld-aout')
-rw-r--r-- | libexec/rtld-aout/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rtld-aout/Makefile b/libexec/rtld-aout/Makefile index 305eca1..160f414 100644 --- a/libexec/rtld-aout/Makefile +++ b/libexec/rtld-aout/Makefile @@ -1,10 +1,10 @@ -# $Id: Makefile,v 1.25 1997/11/29 03:32:46 jdp Exp $ +# $Id: Makefile,v 1.26 1998/06/01 13:00:32 peter Exp $ PROG= ld.so SRCS= mdprologue.S rtld.c shlib.c md.c support.c MAN1= rtld.1 # 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} ${PICFLAG} -DRTLD -Wall +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/} @@ -12,6 +12,6 @@ LDADD+= -lc_pic -lgcc_pic INSTALLFLAGS+= -fschg -C # -C to install as atomically as possible MLINKS= rtld.1 ld.so.1 -.PATH: ${.CURDIR}/${MACHINE} +.PATH: ${.CURDIR}/${MACHINE_ARCH} .include <bsd.prog.mk> |