freebsd-dev/sys/modules/cbb/Makefile
Warner Losh 10534a60e8 Add modules for cardbus and the cardbus bridge driver. Files needed
to build these to be committed next.

Again, not added to sys/modules/Makefile
1999-11-18 07:11:16 +00:00

18 lines
385 B
Makefile

# $FreeBSD$
S = ${.CURDIR}/../..
.PATH: ${.CURDIR}/../../pci
KMOD= cbb
SRCS= pccbb.c \
device_if.h bus_if.h
CLEANFILES+= device_if.h bus_if.h
NOMAN=
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
.include <bsd.kmod.mk>