From 98edb3e17869504d0ada58932efa96b71f899181 Mon Sep 17 00:00:00 2001 From: Bill Paul Date: Fri, 23 Jul 1999 05:48:01 +0000 Subject: Create module directories for the xl, ti, tl and sk drivers and add them to the Makefile so that modules will be generated for /modules. --- sys/modules/sk/Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 sys/modules/sk/Makefile (limited to 'sys/modules/sk') diff --git a/sys/modules/sk/Makefile b/sys/modules/sk/Makefile new file mode 100644 index 000000000000..9c3b9ebfb50c --- /dev/null +++ b/sys/modules/sk/Makefile @@ -0,0 +1,28 @@ +# $Id: Makefile,v 1.3 1999/07/06 19:23:01 des Exp $ + +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: + echo "#define NFXP 1" > sk.h + +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 -- cgit v1.3