]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/modules/sr/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / modules / sr / Makefile
1 # $FreeBSD$
2  
3 .PATH:  ${.CURDIR}/../../dev/sr
4 KMOD    = if_sr
5 SRCS    = if_sr.c if_sr_isa.c if_sr_pci.c
6 SRCS    += device_if.h bus_if.h pci_if.h isa_if.h opt_netgraph.h
7
8 .if !defined(KERNBUILDDIR)
9 NETGRAPH?=    0
10
11 .if ${NETGRAPH} != 0
12 opt_netgraph.h:
13         echo "#define NETGRAPH ${NETGRAPH}" > opt_netgraph.h
14 .endif
15 .endif
16
17 .include <bsd.kmod.mk>