Home | History | Annotate | Line # | Download | only in ldd
Makefile.inc revision 1.1.58.1
      1 #	$NetBSD: Makefile.inc,v 1.1.58.1 2009/12/23 03:14:47 mrg Exp $
      2 
      3 .if ${MACHINE_ARCH} == "sparc64"
      4 MLIBDIR=	sparc
      5 .endif
      6 
      7 .if ${MACHINE_ARCH} == "x86_64"
      8 MLIBDIR=	i386
      9 .endif
     10 
     11 .if ${MACHINE_ARCH} == "powerpc64"
     12 MLIBDIR=	powerpc
     13 .endif
     14 
     15 # For now make "elf32" look for native (n32)
     16 .if (${MACHINE_ARCH} == "mips64eb") || (${MACHINE_ARCH} == "mips64el")
     17 MLIBDIR=	64
     18 COMPAT_MLIBDIR=	o32
     19 CPPFLAGS+= -DLDD_ELF64
     20 .endif
     21 
     22 .if exists(${.CURDIR}/../../Makefile.inc)
     23 .include "${.CURDIR}/../../Makefile.inc"
     24 .endif
     25