1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-31 12:13:10 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90706
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>