Home | History | Annotate | Line # | Download | only in compat_netbsd32_13
Makefile revision 1.2
      1 #	$NetBSD: Makefile,v 1.2 2019/01/27 02:08:45 pgoyette Exp $
      2 
      3 .include "../Makefile.inc"
      4 
      5 .PATH:	${S}/compat/netbsd32
      6 
      7 KMOD=	compat_netbsd32_13
      8 
      9 CPPFLAGS+=	-DCOMPAT_NETBSD32
     10 CPPFLAGS+=	-DCOMPAT_13 -DCOMPAT_14 -DCOMPAT_16 -DCOMPAT_20 -DCOMPAT_30
     11 CPPFLAGS+=	-DCOMPAT_40 -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80
     12 CPPFLAGS+=	-I${NETBSDSRCDIR}/sys/external/bsd/libnv/dist
     13 
     14 SRCS+=	netbsd32_compat_13.c
     15 
     16 .if ${MACHINE_ARCH} == "x86_64"
     17 .PATH:  ${S}/arch/amd64/amd64
     18 SRCS+=  netbsd32_machdep_13.c
     19 .endif
     20 
     21 .if ${MACHINE_ARCH} == "arm"
     22 .PATH:	${S}/arch/arm/arm32
     23 SRCS+=  netbsd32_machdep_13.c
     24 .endif
     25 
     26 .include <bsd.kmodule.mk>
     27