diff options
Diffstat (limited to 'sys/modules/mx/Makefile')
-rw-r--r-- | sys/modules/mx/Makefile | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/sys/modules/mx/Makefile b/sys/modules/mx/Makefile index 0ffb2f6..bbb49c0 100644 --- a/sys/modules/mx/Makefile +++ b/sys/modules/mx/Makefile @@ -1,25 +1,8 @@ # $FreeBSD$ -S = ${.CURDIR}/../.. -.PATH: $S/pci +.PATH: ${.CURDIR}/../../pci KMOD = if_mx SRCS = if_mx.c opt_bdg.h device_if.h bus_if.h pci_if.h miibus_if.h -CLEANFILES += opt_bdg.h device_if.h bus_if.h pci_if.h miibus_if.h CFLAGS += ${DEBUG_FLAGS} -opt_bdg.h: - touch opt_bdg.h - -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 - -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/dev/mii/miibus_if.m - perl $S/kern/makedevops.pl -h $S/dev/mii/miibus_if.m - .include <bsd.kmod.mk> |