]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/ar/Makefile
Merge gnu cpio 2.6 -> 2.8 changes. Unfortunately, we have massive
[FreeBSD/FreeBSD.git] / sys / modules / ar / Makefile
1 # $FreeBSD$
2
3 .PATH:  ${.CURDIR}/../../dev/ar
4 KMOD    = if_ar
5 SRCS    = if_ar.c if_ar_isa.c if_ar_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>