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 7 KMOD= compat_90 8 9 CPPFLAGS+= -DCOMPAT_90 10 CPPFLAGS+= -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 15 CPPFLAGS+= -DINET6 16 17 SRCS+= compat_90_mod.c 18 SRCS+= net_inet6_nd_90.c 19 SRCS+= vfs_syscalls_90.c 20 21 .include <bsd.kmodule.mk> 22