xref: /freebsd/sys/modules/usb/umb/Makefile (revision 0f1bf1c22a0c97e84a4db19197a75952487aa20b)
1*0f1bf1c2SAdrian Chadd# Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
2*0f1bf1c2SAdrian Chadd#
3*0f1bf1c2SAdrian Chadd# Redistribution and use in source and binary forms, with or without
4*0f1bf1c2SAdrian Chadd# modification, are permitted provided that the following conditions
5*0f1bf1c2SAdrian Chadd# are met:
6*0f1bf1c2SAdrian Chadd# 1. Redistributions of source code must retain the above copyright
7*0f1bf1c2SAdrian Chadd#    notice, this list of conditions and the following disclaimer.
8*0f1bf1c2SAdrian Chadd# 2. Redistributions in binary form must reproduce the above copyright
9*0f1bf1c2SAdrian Chadd#    notice, this list of conditions and the following disclaimer in the
10*0f1bf1c2SAdrian Chadd#    documentation and/or other materials provided with the distribution.
11*0f1bf1c2SAdrian Chadd#
12*0f1bf1c2SAdrian Chadd# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
13*0f1bf1c2SAdrian Chadd# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
14*0f1bf1c2SAdrian Chadd# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
15*0f1bf1c2SAdrian Chadd# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
16*0f1bf1c2SAdrian Chadd# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
17*0f1bf1c2SAdrian Chadd# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
18*0f1bf1c2SAdrian Chadd# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
19*0f1bf1c2SAdrian Chadd# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
20*0f1bf1c2SAdrian Chadd# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
21*0f1bf1c2SAdrian Chadd# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
22*0f1bf1c2SAdrian Chadd# SUCH DAMAGE.
23*0f1bf1c2SAdrian Chadd#
24*0f1bf1c2SAdrian Chadd
25*0f1bf1c2SAdrian ChaddS=     ${SRCTOP}/sys
26*0f1bf1c2SAdrian Chadd
27*0f1bf1c2SAdrian Chadd.PATH: $S/dev/usb/net
28*0f1bf1c2SAdrian Chadd
29*0f1bf1c2SAdrian ChaddKMOD=	umb
30*0f1bf1c2SAdrian ChaddSRCS=	opt_bus.h opt_usb.h device_if.h bus_if.h usb_if.h usbdevs.h \
31*0f1bf1c2SAdrian Chadd	if_umb.c
32*0f1bf1c2SAdrian Chadd
33*0f1bf1c2SAdrian Chadd.include <bsd.kmod.mk>
34