Update these Makefiles; add mlphy and tlphy to the mii module, add

miibus_if.h to tl module's dependencies.
This commit is contained in:
Bill Paul 1999-08-27 19:45:19 +00:00
parent 7e42e2f811
commit d0dca9afa4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50464
2 changed files with 8 additions and 2 deletions

View File

@ -1,10 +1,11 @@
# $Id: Makefile,v 1.1 1999/07/23 05:48:01 wpaul Exp $
# $Id: Makefile,v 1.1 1999/08/21 17:40:39 wpaul Exp $
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
CLEANFILES += device_if.h bus_if.h miibus_if.h miibus_if.c
CFLAGS += ${DEBUG_FLAGS}

View File

@ -1,10 +1,12 @@
# $Id: Makefile,v 1.1 1999/07/23 05:47:59 wpaul Exp $
# $Id: Makefile,v 1.2 1999/08/10 17:15:17 wpaul Exp $
S = ${.CURDIR}/../..
.PATH: $S/pci
KMOD = tl
SRCS = if_tl.c tl.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
SRCS += miibus_if.h
CLEANFILES += tl.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h
CLEANFILEs += miibus_if.h
CFLAGS += ${DEBUG_FLAGS}
tl.h:
@ -25,4 +27,7 @@ bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
perl $S/kern/makedevops.pl -h $S/pci/pci_if.m
miibus_if.h: $S/kern/makedevops.pl $S/mii/miibus_if.m
perl $S/kern/makedevops.pl -h $S/mii/miibus_if.m
.include <bsd.kmod.mk>