Deleted Added
full compact
Makefile (41681) Makefile (48275)
1# 08 Nov 1998
2#
3# Makefile for kld char device driver.
4#
5# 08 Nov 1998 Rajesh Vaidheeswarran
6#
7# Copyright (c) 1998 Rajesh Vaidheeswarran
8# All rights reserved.

--- 20 unchanged lines hidden (view full) ---

29# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35# SUCH DAMAGE.
36#
1# 08 Nov 1998
2#
3# Makefile for kld char device driver.
4#
5# 08 Nov 1998 Rajesh Vaidheeswarran
6#
7# Copyright (c) 1998 Rajesh Vaidheeswarran
8# All rights reserved.

--- 20 unchanged lines hidden (view full) ---

29# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35# SUCH DAMAGE.
36#
37# $Id: Makefile,v 1.5 1998/11/08 22:31:00 rv Exp $
37# $Id: Makefile,v 1.1 1998/12/11 10:44:30 dfr Exp $
38#
39# Copyright (c) 1993 Terrence R. Lambert.
40# All rights reserved.
41#
42# Redistribution and use in source and binary forms, with or without
43# modification, are permitted provided that the following conditions
44# are met:
45# 1. Redistributions of source code must retain the above copyright

--- 18 unchanged lines hidden (view full) ---

64# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
65# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
66# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
67# SUCH DAMAGE.
68#
69
70BINDIR = /tmp
71SRCS = cdev.c cdevmod.c
38#
39# Copyright (c) 1993 Terrence R. Lambert.
40# All rights reserved.
41#
42# Redistribution and use in source and binary forms, with or without
43# modification, are permitted provided that the following conditions
44# are met:
45# 1. Redistributions of source code must retain the above copyright

--- 18 unchanged lines hidden (view full) ---

64# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
65# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
66# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
67# SUCH DAMAGE.
68#
69
70BINDIR = /tmp
71SRCS = cdev.c cdevmod.c
72KMOD = cdev_mod
72KMOD = cdev
73NOMAN = t
74KLDMOD = t
75
76KLDLOAD = /sbin/kldload
77KLDUNLOAD = /sbin/kldunload
78
79CLEANFILES+= ${KMOD}
80
81load: /dev/cdev
82 ${KLDLOAD} -v ./${KMOD}
83
84unload:
85 rm -f /dev/cdev
86 ${KLDUNLOAD} -v -n ${KMOD}
87
88/dev/cdev:
89 mknod /dev/cdev c 32 0
90
91.include <bsd.kmod.mk>
73NOMAN = t
74KLDMOD = t
75
76KLDLOAD = /sbin/kldload
77KLDUNLOAD = /sbin/kldunload
78
79CLEANFILES+= ${KMOD}
80
81load: /dev/cdev
82 ${KLDLOAD} -v ./${KMOD}
83
84unload:
85 rm -f /dev/cdev
86 ${KLDUNLOAD} -v -n ${KMOD}
87
88/dev/cdev:
89 mknod /dev/cdev c 32 0
90
91.include <bsd.kmod.mk>