summaryrefslogtreecommitdiff
path: root/sys/modules/compat_13/Makefile
diff options
context:
space:
mode:
authorpgoyette <pgoyette@NetBSD.org>2019-01-27 02:08:33 +0000
committerpgoyette <pgoyette@NetBSD.org>2019-01-27 02:08:33 +0000
commitcc17ee2ece085d7d746bcd8fa9be19170855aaac (patch)
tree5be40613f405cb081b2c44410b1506781927f8e3 /sys/modules/compat_13/Makefile
parent10dd4cc92542aa04b0e59469a484a48e4c3cdd24 (diff)
Merge the [pgoyette-compat] branch
Diffstat (limited to 'sys/modules/compat_13/Makefile')
-rw-r--r--sys/modules/compat_13/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/modules/compat_13/Makefile b/sys/modules/compat_13/Makefile
new file mode 100644
index 00000000000..1cb1c2efc5f
--- /dev/null
+++ b/sys/modules/compat_13/Makefile
@@ -0,0 +1,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>