a654d07295
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)
25 lines
444 B
Makefile
25 lines
444 B
Makefile
# $Id: Makefile,v 1.6 1998/02/01 18:12:14 bde Exp $
|
|
|
|
.PATH: ${.CURDIR}/../../net
|
|
KMOD= if_sl
|
|
SRCS= if_sl.c slcompress.c bpfilter.h opt_inet.h sl.h
|
|
NOMAN=
|
|
|
|
NBPFILTER?= 0
|
|
NSL?= 2
|
|
PROTOS?= -DINET
|
|
|
|
CFLAGS+= ${PROTOS}
|
|
CLEANFILES+= bpfilter.h opt_inet.h sl.h
|
|
|
|
bpfilter.h:
|
|
echo "#define NBPFILTER ${NBPFILTER}" > bpfilter.h
|
|
|
|
opt_inet.h:
|
|
echo "#define INET 1" > opt_inet.h
|
|
|
|
sl.h:
|
|
echo "#define NSL ${NSL}" > sl.h
|
|
|
|
.include <bsd.kmod.mk>
|