1300811Sian#
2300811Sian# Copyright (c) 2016 Ian Lepore <ian@FreeBSD.org>
3300811Sian# All rights reserved.
4300811Sian#
5300811Sian# Redistribution and use in source and binary forms, with or without
6300811Sian# modification, are permitted provided that the following conditions
7300811Sian# are met:
8300811Sian# 1. Redistributions of source code must retain the above copyright
9300811Sian#    notice, this list of conditions and the following disclaimer,
10300811Sian#    without modification.
11300811Sian# 2. Redistributions in binary form must reproduce at minimum a disclaimer
12300811Sian#    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13300811Sian#    redistribution must be conditioned upon including a substantially
14300811Sian#    similar Disclaimer requirement for further binary redistribution.
15300811Sian#
16300811Sian# NO WARRANTY
17300811Sian# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18300811Sian# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19300811Sian# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20300811Sian# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21300811Sian# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22300811Sian# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23300811Sian# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24300811Sian# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25300811Sian# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26300811Sian# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27300811Sian# THE POSSIBILITY OF SUCH DAMAGES.
28300811Sian#
29300811Sian# $FreeBSD: releng/11.0/sys/modules/gpio/gpiopps/Makefile 300823 2016-05-27 04:34:42Z ian $
30300811Sian#
31300811Sian
32300811Sian.PATH:	${.CURDIR}/../../../dev/gpio/
33300811Sian
34300811SianKMOD=	gpiopps
35300811SianSRCS=	gpiopps.c
36300823SianSRCS+=	device_if.h bus_if.h gpio_if.h gpiobus_if.h opt_platform.h ofw_bus_if.h
37300811Sian
38300811SianCFLAGS+=  -I. -I${.CURDIR}/../../../dev/gpio/
39300811Sian
40300811Sian.include <bsd.kmod.mk>
41