Makefile revision 281974
1# $FreeBSD: stable/10/tools/regression/sockets/so_setfib/Makefile 281974 2015-04-25 05:31:52Z ngie $
2
3.include <bsd.own.mk>
4
5PROG=	so_setfib
6MAN=
7WARNS?=	6
8
9.if ${MK_INET} != "no"
10CFLAGS+=	-DINET
11.endif
12.if ${MK_INET6} != "no"
13CFLAGS+=	-DINET6
14.endif
15
16.include <bsd.prog.mk>
17