blob: 1cb1c2efc5fa7cee63196c1c3ce3d86c52578cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.2 2019/01/27 02:08:44 pgoyette Exp $
.include "../Makefile.inc"
.PATH: ${S}/compat/common
KMOD= compat_13
CPPFLAGS+= -DCOMPAT_13 -DCOMPAT_14 -DCOMPAT_16 -DCOMPAT_20 -DCOMPAT_30
CPPFLAGS+= -DCOMPAT_40 -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80
SRCS+= compat_13_mod.c
SRCS+= uvm_13.c kern_sig_13.c
.if ${MACHINE_ARCH} == "x86_64"
.PATH: ${S}/arch/amd64/amd64
SRCS+= compat_13_machdep.c
.endif
.include <bsd.kmodule.mk>
|