1999-08-10 17:15:20 +00:00
|
|
|
# $Id: Makefile,v 1.1 1999/07/23 05:47:56 wpaul Exp $
|
1999-07-23 05:48:01 +00:00
|
|
|
|
|
|
|
S = ${.CURDIR}/../..
|
|
|
|
.PATH: $S/pci
|
|
|
|
KMOD = sk
|
|
|
|
SRCS = if_sk.c sk.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
|
|
|
|
CLEANFILES += sk.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
|
|
|
|
CFLAGS += ${DEBUG_FLAGS}
|
|
|
|
|
|
|
|
sk.h:
|
1999-08-10 17:15:20 +00:00
|
|
|
echo "#define NSK 1" > sk.h
|
1999-07-23 05:48:01 +00:00
|
|
|
|
|
|
|
bpf.h:
|
|
|
|
echo "#define NBPF 1" > bpf.h
|
|
|
|
|
|
|
|
opt_bdg.h:
|
|
|
|
touch opt_bdg.h
|
|
|
|
|
|
|
|
device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m
|
|
|
|
perl $S/kern/makedevops.pl -h $S/kern/device_if.m
|
|
|
|
|
|
|
|
bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
|
|
|
|
perl $S/kern/makedevops.pl -h $S/kern/bus_if.m
|
|
|
|
|
|
|
|
pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
|
|
|
|
perl $S/kern/makedevops.pl -h $S/pci/pci_if.m
|
|
|
|
|
|
|
|
.include <bsd.kmod.mk>
|