mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
this PHY and the Davicom DM9101 have exactly the same register definitions. One of them is probably a clone of the other. I'm not sure which. This is needed for the Davicom DM9102 10/100 PCI ethernet driver which will be committed shortly.
24 lines
759 B
Makefile
24 lines
759 B
Makefile
# $FreeBSD$
|
|
|
|
S = ${.CURDIR}/../..
|
|
.PATH: $S/dev/mii
|
|
KMOD = mii
|
|
SRCS = mii.c mii_physubr.c ukphy.c ukphy_subr.c bus_if.h
|
|
SRCS += miibus_if.h device_if.h miibus_if.c exphy.c nsphy.c
|
|
SRCS += mlphy.c tlphy.c rlphy.c amphy.c
|
|
CLEANFILES += device_if.h bus_if.h miibus_if.h miibus_if.c
|
|
CFLAGS += ${DEBUG_FLAGS}
|
|
|
|
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
|
|
|
|
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
|
|
|
|
miibus_if.c: $S/kern/makedevops.pl $S/dev/mii/miibus_if.m
|
|
perl $S/kern/makedevops.pl -c $S/dev/mii/miibus_if.m
|
|
|
|
.include <bsd.kmod.mk>
|