mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 03:49:02 +00:00
10534a60e8
to build these to be committed next. Again, not added to sys/modules/Makefile
18 lines
398 B
Makefile
18 lines
398 B
Makefile
# $FreeBSD$
|
|
|
|
S = ${.CURDIR}/../..
|
|
.PATH: ${.CURDIR}/../../dev/cardbus
|
|
KMOD= pccard
|
|
SRCS= cardbus.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>
|