15 lines
425 B
Makefile
15 lines
425 B
Makefile
# $NetBSD: Makefile.inc,v 1.7 1999/06/07 18:04:31 castor Exp $
|
|
|
|
SRCS+= rtld_start.S mips_reloc.c
|
|
|
|
CPPFLAGS+= -mabicalls -G0 -fPIC -DELFSIZE=32 -I${.CURDIR}
|
|
CPPFLAGS+= -DRTLD_INHIBIT_COPY_RELOCS
|
|
|
|
.if (${MACHINE_ARCH} == "mipseb")
|
|
# UGH! ld.so.script specifies little-endian; need to override that here
|
|
LDFLAGS+= -EB
|
|
.endif
|
|
|
|
LDFLAGS+= -Bshareable -Bsymbolic -e .rtld_start
|
|
LDFLAGS+= --script ${.CURDIR}/arch/mips/ld.so.script
|