diff options
author | bde <bde@FreeBSD.org> | 1999-11-28 18:53:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-11-28 18:53:47 +0000 |
commit | d7156780d39bcfe9261d9a092c4b4fcbf122a73e (patch) | |
tree | 18228d1b21d9e19229ad8461e2b326297d531fef /sys/modules/ukbd | |
parent | 927cbd2a6cdb5a394f334292d5ba382cf783967f (diff) | |
download | FreeBSD-src-d7156780d39bcfe9261d9a092c4b4fcbf122a73e.zip FreeBSD-src-d7156780d39bcfe9261d9a092c4b4fcbf122a73e.tar.gz |
Removed special rules for building and cleaning device interface files
and empty options files. The rules are now generated automatically in
bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
Diffstat (limited to 'sys/modules/ukbd')
-rw-r--r-- | sys/modules/ukbd/Makefile | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/sys/modules/ukbd/Makefile b/sys/modules/ukbd/Makefile index fb07ab5..f9ccbe1 100644 --- a/sys/modules/ukbd/Makefile +++ b/sys/modules/ukbd/Makefile @@ -1,29 +1,19 @@ # $FreeBSD$ MAINTAINER = n_hibma@freebsd.org -S = ${.CURDIR}/../.. -.PATH: $S/dev/usb +.PATH: ${.CURDIR}/../../dev/usb KMOD = ukbd SRCS = bus_if.h device_if.h vnode_if.h \ opt_usb.h ukbd.h opt_kbd.h \ ukbd.c NOMAN = -CLEANFILES += bus_if.h device_if.h vnode_if.h \ - opt_usb.h ukbd.h opt_kbd.h \ - vnode_if.c - -opt_usb.h: - echo > opt_usb.h +CLEANFILES = ukbd.h opt_kbd.h ukbd.h: echo > ukbd.h opt_kbd.h: echo '#define KBD_INSTALL_CDEV 1' > opt_kbd.h -bus_if.h: - perl $S/kern/makedevops.pl -h $S/kern/bus_if.m -device_if.h: - perl $S/kern/makedevops.pl -h $S/kern/device_if.m .include <bsd.kmod.mk> |