1# $NetBSD: Makefile,v 1.3 2023/12/10 00:29:24 pgoyette Exp $ 2 3.include "../Makefile.inc" 4 5.PATH: ${S}/compat/common 6 7KMOD= compat_90 8 9CPPFLAGS+= -DCOMPAT_90 10CPPFLAGS+= -DINET 11 12# Remove/comment the following if the target kernel on which the 13# module may be loaded doesn't have IPv6. Enable this by default. 14 15CPPFLAGS+= -DINET6 16 17SRCS+= compat_90_mod.c 18SRCS+= net_inet6_nd_90.c 19SRCS+= vfs_syscalls_90.c 20 21.include <bsd.kmodule.mk> 22