kernel: Remove unused *.h files from SRCS in kernel module Makefiles.
[dragonfly.git] / sys / net / gif / Makefile
1 # $FreeBSD: src/sys/modules/if_gif/Makefile,v 1.1.2.1 2001/07/24 19:10:17 brooks Exp $
2
3 .PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
4
5 KMOD=   if_gif
6 SRCS=   if_gif.c in_gif.c in6_gif.c opt_inet.h opt_inet6.h
7 SRCS+=  device_if.h bus_if.h
8
9 .if !defined(BUILDING_WITH_KERNEL)
10 opt_inet.h:
11         echo "#define INET 1" > ${.TARGET}
12
13 opt_inet6.h:
14         echo "#define INET6 1" > ${.TARGET}
15
16 opt_mrouting.h:
17         echo "#define MROUTING 1" > ${.TARGET}
18 .endif
19
20 .include <bsd.kmod.mk>