mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
14 lines
165 B
Makefile
14 lines
165 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PROG= so_setfib
|
|
MAN=
|
|
|
|
.if ${MK_INET} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
.if ${MK_INET6} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|