25d6e2cc4f
Avoid creating (and subsequently using) fake opt_*.h files when the modules are built with the kernel and hence actual opt_*.h files are available in ${KERNBUILDDIR}. Fix a few small bugs that would prevent this from working. At last the build options of the modules become consistent with those of the kernel unless the MODULES_WITH_WORLD way still is used. Approved by: re (kensmith, scottl) Requested by: ru Tested on: amd64 i386 sparc64 Tested by: md5
28 lines
573 B
Makefile
28 lines
573 B
Makefile
# Cronyx Id: sys.modules.ct.Makefile,v 1.1.2.2 2003/12/08 15:39:01 rik Exp $
|
|
# $FreeBSD$
|
|
.PATH: ${.CURDIR}/../../dev/ctau
|
|
KMOD= if_ct
|
|
SRCS= if_ct.c ctddk.c ctau.c opt_netgraph.h opt_ng_cronyx.h \
|
|
device_if.h bus_if.h isa_if.h
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
NCTAU?= 3
|
|
PROTOS?= -DINET
|
|
NG_CRONYX?= 0
|
|
NETGRAPH= ${NG_CRONYX}
|
|
|
|
CFLAGS+= ${PROTOS}
|
|
|
|
.if ${NETGRAPH} != 0
|
|
opt_netgraph.h:
|
|
echo "#define NETGRAPH $(NETGRAPH)" > opt_netgraph.h
|
|
.endif
|
|
|
|
.if ${NG_CRONYX} != 0
|
|
opt_ng_cronyx.h:
|
|
echo "#define NETGRAPH_CRONYX 1" > opt_ng_cronyx.h
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|