Makefile revision 83934
1# $FreeBSD: head/sys/modules/if_faith/Makefile 83934 2001-09-25 18:40:52Z brooks $
2
3.PATH: ${.CURDIR}/../../net
4
5KMOD=	if_faith
6SRCS=	if_faith.c opt_inet.h opt_inet6.h
7NOMAN=
8
9opt_inet.h:
10	echo "#define INET 1" > ${.TARGET}
11
12opt_inet6.h:
13	echo "#define INET6 1" > ${.TARGET}
14
15.include <bsd.kmod.mk>
16