Fix my recent breakage of some modules.

This commit is contained in:
Bruce Evans 2002-02-15 15:45:34 +00:00
parent 5dc4151c36
commit aa99bc993e
2 changed files with 8 additions and 1 deletions

View file

@ -5,5 +5,9 @@ KMOD= digi
SRCS= digi.c digi_pci.c digi_isa.c
SRCS+= digi.h digi_pci.h digireg.h digi_mod.h
SRCS+= bus_if.h pci_if.h device_if.h
SRCS+= opt_compat.h
opt_compat.h:
echo "#define COMPAT_43 1" > opt_compat.h
.include <bsd.kmod.mk>

View file

@ -3,6 +3,9 @@
.PATH: ${.CURDIR}/../../dev/rp
KMOD= rp
SRCS= rp.c rp_pci.c device_if.h bus_if.h pci_if.h
SRCS= rp.c rp_pci.c device_if.h bus_if.h pci_if.h opt_compat.h
opt_compat.h:
echo "#define COMPAT_43 1" > opt_compat.h
.include <bsd.kmod.mk>