diff options
| author | Mike Smith <msmith@FreeBSD.org> | 1999-10-07 02:23:12 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 1999-10-07 02:23:12 +0000 |
| commit | d5a51e03e79c61befdb9f749cab2c79b7eac407e (patch) | |
| tree | 9e7993670832ba736069cfee75286aeead9f189a /sys/modules/amr | |
| parent | 1ac4b82b11c460d0ef82bf760b71a8b4d34be28a (diff) | |
Notes
Diffstat (limited to 'sys/modules/amr')
| -rw-r--r-- | sys/modules/amr/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sys/modules/amr/Makefile b/sys/modules/amr/Makefile new file mode 100644 index 0000000000000..f769bdcbc3b28 --- /dev/null +++ b/sys/modules/amr/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ + +S = ${.CURDIR}/../.. +.PATH: $S/dev/amr +KMOD = amr +SRCS = amr.c amr_pci.c amr_disk.c device_if.h bus_if.h pci_if.h +CLEANFILES += amr.h device_if.h bus_if.h pci_if.h +CFLAGS += ${DEBUG_FLAGS} + +amr.h: + echo "#define NAMR 1" > amr.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> |
