1 # $NetBSD: Makefile.inc,v 1.10 2002/09/12 17:08:32 mycroft Exp $ 2 3 SRCS+= rtld_start.S mips_reloc.c 4 5 # XXX Should not be in CPPFLAGS! 6 CPPFLAGS+= -mabicalls -G0 -fPIC 7 8 CPPFLAGS+= -DELFSIZE=32 -I${.CURDIR} 9 CPPFLAGS+= -DRTLD_INHIBIT_COPY_RELOCS 10 11 LDFLAGS+= -Bshareable -Bsymbolic -e .rtld_start 12 LDFLAGS+= --script ${.CURDIR}/arch/mips/ld.so.script 13 .if (${MACHINE_ARCH} == "mipseb") 14 LDFLAGS+= -EB 15 .endif 16