e0b124a618
with clang: sys/dev/ce/tau32-ddk.c:1228:37: warning: implicit truncation from 'int' to bitfield changes value from 65532 to 8188 [-Wconstant-conversion] Since this file is obfuscated C, we can never determine (in a sane way, at least :) if this points to a real problem or not. The driver has been in the tree for more than five years, so it most likely isn't. MFC after: 1 week
32 lines
664 B
Makefile
32 lines
664 B
Makefile
# $Cronyx: sys.modules.ce.Makefile,v 1.2 2005/04/23 20:10:22 rik Exp $
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ce
|
|
KMOD = if_ce
|
|
SRCS = if_ce.c ceddk.c tau32-ddk.c
|
|
SRCS += opt_bpf.h opt_netgraph.h opt_ng_cronyx.h device_if.h bus_if.h \
|
|
pci_if.h
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
PROTOS?= -DINET
|
|
NG_CRONYX?= 0
|
|
NETGRAPH= ${NG_CRONYX}
|
|
|
|
CFLAGS+= ${PROTOS}
|
|
|
|
.if ${NETGRAPH} != 0
|
|
opt_netgraph.h:
|
|
echo "#define NETGRAPH ${NETGRAPH}" > ${.TARGET}
|
|
.endif
|
|
|
|
.if ${NG_CRONYX} != 0
|
|
opt_ng_cronyx.h:
|
|
echo "#define NETGRAPH_CRONYX 1" > ${.TARGET}
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
CWARNFLAGS.tau32-ddk.c= ${NO_WCONSTANT_CONVERSION}
|
|
CWARNFLAGS+= ${CWARNFLAGS.${.IMPSRC:T}}
|