blob: 5534f4c2164f1ec63082b38ce3a2b461dee3771c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.2 2019/01/27 02:08:44 pgoyette Exp $
.include "../Makefile.inc"
.PATH: ${S}/compat/common
KMOD= compat_14
CPPFLAGS+= -DCOMPAT_14 -DCOMPAT_16 -DCOMPAT_20 -DCOMPAT_30
CPPFLAGS+= -DCOMPAT_40 -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80
SRCS+= compat_14_mod.c
SRCS+= rtsock_14.c
.include <bsd.kmodule.mk>
|