freebsd-dev/sys/modules/if_disc/Makefile
Peter Wemm a654d07295 Sample initial set of kld-ified modules. Not all have been completely
converted yet.  These are more of a starting point.  This is NOT connected
to the parent Makefile.

OK'ed by jkh (who is ever so patiently waiting)
1998-10-16 04:30:52 +00:00

20 lines
359 B
Makefile

# $Id: Makefile,v 1.5 1998/02/01 18:12:13 bde Exp $
.PATH: ${.CURDIR}/../../net
KMOD= if_disc
SRCS= if_disc.c bpfilter.h opt_inet.h
NOMAN=
NBPFILTER?= 0
CFLAGS+= ${PROTOS}
CLEANFILES+= bpfilter.h opt_inet.h
bpfilter.h:
echo "#define NBPFILTER ${NBPFILTER}" > bpfilter.h
opt_inet.h:
echo "#define INET 1" > opt_inet.h
.include <bsd.kmod.mk>