summaryrefslogtreecommitdiff
path: root/sys/modules/mlx
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1999-11-28 18:53:47 +0000
committerBruce Evans <bde@FreeBSD.org>1999-11-28 18:53:47 +0000
commit6f940b38476a3dc6ecaca7ad305eddf1f9eab154 (patch)
treea75309cf2a123fe17ec5d563ef84cd1db17898a6 /sys/modules/mlx
parentbc019cca2fb755ab66c54bc88a073e843b66bb55 (diff)
downloadsrc-test2-6f940b38476a3dc6ecaca7ad305eddf1f9eab154.tar.gz
src-test2-6f940b38476a3dc6ecaca7ad305eddf1f9eab154.zip
Notes
Diffstat (limited to 'sys/modules/mlx')
-rw-r--r--sys/modules/mlx/Makefile14
1 files changed, 2 insertions, 12 deletions
diff --git a/sys/modules/mlx/Makefile b/sys/modules/mlx/Makefile
index d804e85cb047..ab142b1e0788 100644
--- a/sys/modules/mlx/Makefile
+++ b/sys/modules/mlx/Makefile
@@ -1,22 +1,12 @@
# $FreeBSD$
-S = ${.CURDIR}/../..
-.PATH: $S/dev/mlx
+.PATH: ${.CURDIR}/../../dev/mlx
KMOD = mlx
SRCS = mlx.c mlx_pci.c mlx_disk.c device_if.h bus_if.h pci_if.h
-CLEANFILES += mlx.h device_if.h bus_if.h pci_if.h
+CLEANFILES = mlx.h
CFLAGS += ${DEBUG_FLAGS}
mlx.h:
echo "#define NMLX 1" > mlx.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
-
.include <bsd.kmod.mk>