Makefile revision 255362
1249259Sdim# 08 Nov 1998
2249259Sdim#
3249259Sdim# Makefile for sample programs for kld modules package
4249259Sdim#
5249259Sdim# 08 Nov 1998	Rajesh Vaidheeswarran - adapted from lkm Makefile
6249259Sdim#
7249259Sdim# Copyright (c) 1998 Rajesh Vaidheeswarran
8249259Sdim# All rights reserved.
9249259Sdim#
10249259Sdim# Redistribution and use in source and binary forms, with or without
11249259Sdim# modification, are permitted provided that the following conditions
12249259Sdim# are met:
13249259Sdim# 1. Redistributions of source code must retain the above copyright
14249259Sdim#    notice, this list of conditions and the following disclaimer.
15249259Sdim# 2. Redistributions in binary form must reproduce the above copyright
16249259Sdim#    notice, this list of conditions and the following disclaimer in the
17249259Sdim#    documentation and/or other materials provided with the distribution.
18249259Sdim# 3. All advertising materials mentioning features or use of this software
19249259Sdim#    must display the following acknowledgement:
20249259Sdim#      This product includes software developed by Rajesh Vaidheeswarran.
21249259Sdim# 4. The name Rajesh Vaidheeswarran may not be used to endorse or promote
22249259Sdim#    products derived from this software without specific prior written
23249259Sdim#    permission.
24249259Sdim#
25249259Sdim# THIS SOFTWARE IS PROVIDED BY RAJESH VAIDHEESWARRAN ``AS IS'' AND ANY
26249259Sdim# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27249259Sdim# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28249259Sdim# ARE DISCLAIMED.  IN NO EVENT SHALL THE RAJESH VAIDHEESWARRAN BE LIABLE
29249259Sdim# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30249259Sdim# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31249259Sdim# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32249259Sdim# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33249259Sdim# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34249259Sdim# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35249259Sdim# SUCH DAMAGE.
36249259Sdim#
37249259Sdim# Copyright (c) 1993 Terrence R. Lambert.
38249259Sdim# All rights reserved.
39249259Sdim#
40249259Sdim# Redistribution and use in source and binary forms, with or without
41249259Sdim# modification, are permitted provided that the following conditions
42249259Sdim# are met:
43249259Sdim# 1. Redistributions of source code must retain the above copyright
44249259Sdim#    notice, this list of conditions and the following disclaimer.
45249259Sdim# 2. Redistributions in binary form must reproduce the above copyright
46249259Sdim#    notice, this list of conditions and the following disclaimer in the
47249259Sdim#    documentation and/or other materials provided with the distribution.
48249259Sdim# 3. All advertising materials mentioning features or use of this software
49249259Sdim#    must display the following acknowledgement:
50249259Sdim#      This product includes software developed by Terrence R. Lambert.
51249259Sdim# 4. The name Terrence R. Lambert may not be used to endorse or promote
52249259Sdim#    products derived from this software without specific prior written
53249259Sdim#    permission.
54249259Sdim#
55249259Sdim# THIS SOFTWARE IS PROVIDED BY TERRENCE R. LAMBERT ``AS IS'' AND ANY
56249259Sdim# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57249259Sdim# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
58249259Sdim# ARE DISCLAIMED.  IN NO EVENT SHALL THE TERRENCE R. LAMBERT BE LIABLE
59249259Sdim# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60249259Sdim# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
61249259Sdim# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62249259Sdim# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
63249259Sdim# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
64249259Sdim# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
65249259Sdim# SUCH DAMAGE.
66249259Sdim#
67249259Sdim#	$FreeBSD: head/share/examples/kld/Makefile 255362 2013-09-07 14:15:13Z markm $
68249259Sdim#
69249259Sdim
70249259SdimSUBDIR=	cdev dyn_sysctl firmware khelp random_adaptor syscall
71249259Sdim
72249259Sdim.include <bsd.subdir.mk>
73249259Sdim