mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 00:25:50 -04:00
16 lines
187 B
Makefile
16 lines
187 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= so_setfib
|
|
MAN=
|
|
WARNS?= 6
|
|
|
|
.if ${MK_INET} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
.if ${MK_INET6} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|