blob: 1c42ae640dfae322838a7ec58f7a009f81d2d6a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.2 2019/02/17 04:05:58 rin Exp $
.include "../Makefile.inc"
.PATH: ${S}/net
KMOD= sppp_subr
SRCS= if_spppsubr.c
CPPFLAGS+= -DINET
CPPFLAGS+= -DINET6
#CPPFLAGS+= -DIPV6CP_MYIFID_DYN # Will not build if this is enabled!
WARNS= 3
.include <bsd.kmodule.mk>
|