diff options
| author | Bill Paul <wpaul@FreeBSD.org> | 1999-09-05 21:01:03 +0000 |
|---|---|---|
| committer | Bill Paul <wpaul@FreeBSD.org> | 1999-09-05 21:01:03 +0000 |
| commit | 9555e59a1ead019b9eb141bef39a88cf5c061163 (patch) | |
| tree | 7cc37677fbc7caa9fb2658159c0aa4bb2786fe63 /sys/modules | |
| parent | 05385ecdf7868f5f56115cd1f231b4bfaf18a635 (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 2 | ||||
| -rw-r--r-- | sys/modules/sis/Makefile | 33 |
2 files changed, 34 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 2f28cb759685..28cdb3434f4b 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -4,7 +4,7 @@ SUBDIR= ax ccd cd9660 coda fdesc fxp if_disc if_ppp if_sl if_tun ipfw \ kernfs mfs mii msdos mx nfs ntfs nullfs pn portal procfs sf \ - sk ste ti tl umapfs union vn vr wb xl + sis sk ste ti tl umapfs union vn vr wb xl # XXX some of these can move to the general case when de-i386'ed .if ${MACHINE_ARCH} == "i386" diff --git a/sys/modules/sis/Makefile b/sys/modules/sis/Makefile new file mode 100644 index 000000000000..50d8c3f94fde --- /dev/null +++ b/sys/modules/sis/Makefile @@ -0,0 +1,33 @@ +# $FreeBSD$ + +S = ${.CURDIR}/../.. +.PATH: $S/pci +KMOD = sis +SRCS = if_sis.c sis.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h +SRCS += miibus_if.h +CLEANFILES += sis.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h +CLEANFILES += miibus_if.h +CFLAGS += ${DEBUG_FLAGS} + +sis.h: + echo "#define NSIS 1" > sis.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 + +miibus_if.h: $S/kern/makedevops.pl $S/dev/mii/miibus_if.m + perl $S/kern/makedevops.pl -h $S/dev/mii/miibus_if.m + +.include <bsd.kmod.mk> |
