diff options
| author | Julian Elischer <julian@FreeBSD.org> | 2004-06-25 19:22:05 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 2004-06-25 19:22:05 +0000 |
| commit | 327b288e5ce5515e6914ef443418cf2401384fe7 (patch) | |
| tree | e6486f45de5c63b28a090942d8f046694d0329cb /sys/modules/ar | |
| parent | 865897c9f1191913bae430d5d7ec86ad6c7d782b (diff) | |
Notes
Diffstat (limited to 'sys/modules/ar')
| -rw-r--r-- | sys/modules/ar/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sys/modules/ar/Makefile b/sys/modules/ar/Makefile index 3951fd46fb9f..fae9452ef414 100644 --- a/sys/modules/ar/Makefile +++ b/sys/modules/ar/Makefile @@ -1,8 +1,17 @@ # $FreeBSD$ - + .PATH: ${.CURDIR}/../../dev/ar KMOD = if_ar SRCS = if_ar.c if_ar_isa.c if_ar_pci.c SRCS += device_if.h bus_if.h pci_if.h isa_if.h opt_netgraph.h - + +NETGRAPH?= 0 + +opt_netgraph.h: +.if ${NETGRAPH} != 0 + echo "#define NETGRAPH ${NETGRAPH}" > opt_netgraph.h +.else + echo "" > opt_netgraph.h +.endif + .include <bsd.kmod.mk> |
