summaryrefslogtreecommitdiff
path: root/libexec/ld.elf_so/arch/powerpc/Makefile.inc
blob: b12b71778deeae43d34f8cfdc669ab1b8a6a3528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#	$NetBSD: Makefile.inc,v 1.15 2014/08/15 09:40:07 matt Exp $

SRCS+=		ppc_reloc.c
LDFLAGS+=	-Wl,-e,_rtld_start

CPPFLAGS+=	-fPIC

.if ${LDELFSO_MACHINE_ARCH} == "powerpc64"
SRCS+=		rtld_start64.S
CPPFLAGS+=	-DELFSIZE=64
.else
SRCS+=		rtld_start.S
CPPFLAGS+=	-DELFSIZE=32
LDFLAGS+=	-Wl,--script,${.CURDIR}/arch/powerpc/ld.so.script
.endif