diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2003-08-03 10:39:29 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2003-08-03 10:39:29 +0000 |
commit | fffc6e58d90fb163e7fc5c404411e02660e28c84 (patch) | |
tree | 0d4b73fc06955d9d95dd780e6536a978b16813f2 /share/examples/kld/cdev/module/Makefile | |
parent | 745f3305030f5b38e4e3858218ed01e523d5aff4 (diff) |
Fix the cdev kld example.
PR: 52954
Submitted by: Priit Piipuu <priit.piipuu@mail.ee>
Reviewed by: phk
Notes
Notes:
svn path=/head/; revision=118385
Diffstat (limited to 'share/examples/kld/cdev/module/Makefile')
-rw-r--r-- | share/examples/kld/cdev/module/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/share/examples/kld/cdev/module/Makefile b/share/examples/kld/cdev/module/Makefile index 042427b56331..a35c5001395d 100644 --- a/share/examples/kld/cdev/module/Makefile +++ b/share/examples/kld/cdev/module/Makefile @@ -4,13 +4,4 @@ KMOD= cdev SRCS= cdev.c cdevmod.c -/dev/cdev: - mknod ${.TARGET} c 32 0 - -un/dev/cdev: .PHONY - rm -f /dev/cdev - .include <bsd.kmod.mk> - -load: /dev/cdev -unload: un/dev/cdev |