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