4906cdc8c5
CWARNFALGS.$file centrally so we don't have to have it in all the places. Remove a few warning flags that are no longer needed. Also, always use -Wno-unknown-pragma to (hopefully temporarily) work around #pragma ident in debug.h in the opensolaris code. Remove some stale warning suppression that's no longer necessary.
31 lines
623 B
Makefile
31 lines
623 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}
|