1235267Sgabor# 08 Nov 1998
2235267Sgabor#
3235267Sgabor# Makefile for sample programs for kld modules package
4235267Sgabor#
5235267Sgabor# 08 Nov 1998	Rajesh Vaidheeswarran - adapted from lkm Makefile
6235267Sgabor#
7235267Sgabor# Copyright (c) 1998 Rajesh Vaidheeswarran
8235267Sgabor# All rights reserved.
9235267Sgabor#
10235267Sgabor# Redistribution and use in source and binary forms, with or without
11235267Sgabor# modification, are permitted provided that the following conditions
12235267Sgabor# are met:
13235267Sgabor# 1. Redistributions of source code must retain the above copyright
14235267Sgabor#    notice, this list of conditions and the following disclaimer.
15235267Sgabor# 2. Redistributions in binary form must reproduce the above copyright
16235267Sgabor#    notice, this list of conditions and the following disclaimer in the
17235267Sgabor#    documentation and/or other materials provided with the distribution.
18235267Sgabor# 3. All advertising materials mentioning features or use of this software
19235267Sgabor#    must display the following acknowledgement:
20235267Sgabor#      This product includes software developed by Rajesh Vaidheeswarran.
21235267Sgabor# 4. The name Rajesh Vaidheeswarran may not be used to endorse or promote
22235267Sgabor#    products derived from this software without specific prior written
23235267Sgabor#    permission.
24235267Sgabor#
25235267Sgabor# THIS SOFTWARE IS PROVIDED BY RAJESH VAIDHEESWARRAN ``AS IS'' AND ANY
26235267Sgabor# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27235267Sgabor# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28235267Sgabor# ARE DISCLAIMED.  IN NO EVENT SHALL THE RAJESH VAIDHEESWARRAN BE LIABLE
29235267Sgabor# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30235267Sgabor# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31235267Sgabor# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32235267Sgabor# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33235267Sgabor# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34235267Sgabor# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35235267Sgabor# SUCH DAMAGE.
36235267Sgabor#
37235267Sgabor# Copyright (c) 1993 Terrence R. Lambert.
38235267Sgabor# All rights reserved.
39235267Sgabor#
40235267Sgabor# Redistribution and use in source and binary forms, with or without
41235267Sgabor# modification, are permitted provided that the following conditions
42235267Sgabor# are met:
43235267Sgabor# 1. Redistributions of source code must retain the above copyright
44235435Sgabor#    notice, this list of conditions and the following disclaimer.
45235267Sgabor# 2. Redistributions in binary form must reproduce the above copyright
46235435Sgabor#    notice, this list of conditions and the following disclaimer in the
47235435Sgabor#    documentation and/or other materials provided with the distribution.
48235267Sgabor# 3. All advertising materials mentioning features or use of this software
49235267Sgabor#    must display the following acknowledgement:
50235267Sgabor#      This product includes software developed by Terrence R. Lambert.
51235267Sgabor# 4. The name Terrence R. Lambert may not be used to endorse or promote
52235267Sgabor#    products derived from this software without specific prior written
53235267Sgabor#    permission.
54235267Sgabor#
55235267Sgabor# THIS SOFTWARE IS PROVIDED BY TERRENCE R. LAMBERT ``AS IS'' AND ANY
56235267Sgabor# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57235267Sgabor# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
58235267Sgabor# ARE DISCLAIMED.  IN NO EVENT SHALL THE TERRENCE R. LAMBERT BE LIABLE
59235267Sgabor# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60235267Sgabor# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
61235267Sgabor# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62235267Sgabor# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
63235267Sgabor# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
64235267Sgabor# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
65235267Sgabor# SUCH DAMAGE.
66235267Sgabor#
67235267Sgabor#	$FreeBSD$
68235267Sgabor#
69235267Sgabor
70235267SgaborPACKAGE=examples
71235267SgaborFILESDIR=${SHAREDIR}/examples/kld
72235267SgaborSUBDIR=	cdev dyn_sysctl firmware khelp random_adaptor syscall
73235267Sgabor
74235267Sgabor.include <bsd.subdir.mk>
75235267Sgabor