]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/modules/lmc/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sys / modules / lmc / Makefile
1 # $FreeBSD$
2
3 KMOD  = if_lmc
4 .PATH: ${.CURDIR}/../../dev/lmc
5
6 SRCS  = if_lmc.c if_lmc.h
7 SRCS += device_if.h bus_if.h pci_if.h
8 SRCS += opt_inet.h opt_inet6.h
9 SRCS += opt_netgraph.h
10 SRCS += opt_global.h
11 SRCS += opt_bpf.h
12
13 opt_inet.h:
14         echo "#define INET 1"     > ${.TARGET}
15 opt_inet6.h:
16         echo "#define INET6 0"    > ${.TARGET}
17 opt_netgraph.h:
18         echo "#define NETGRAPH 1" > ${.TARGET}
19 opt_global.h:
20         echo "#define ALTQ 1"     > ${.TARGET}
21 opt_bpf.h: # FreeBSD-5:
22         echo "#define DEV_BPF 1"  > ${.TARGET}
23
24 .include <bsd.kmod.mk>