Makefile revision 300823
1227825Stheraven#
2227825Stheraven# Copyright (c) 2016 Ian Lepore <ian@FreeBSD.org>
3227825Stheraven# All rights reserved.
4227825Stheraven#
5227825Stheraven# Redistribution and use in source and binary forms, with or without
6227825Stheraven# modification, are permitted provided that the following conditions
7227825Stheraven# are met:
8227825Stheraven# 1. Redistributions of source code must retain the above copyright
9227825Stheraven#    notice, this list of conditions and the following disclaimer,
10227825Stheraven#    without modification.
11227825Stheraven# 2. Redistributions in binary form must reproduce at minimum a disclaimer
12227825Stheraven#    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13227825Stheraven#    redistribution must be conditioned upon including a substantially
14227825Stheraven#    similar Disclaimer requirement for further binary redistribution.
15227825Stheraven#
16227825Stheraven# NO WARRANTY
17227825Stheraven# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18227825Stheraven# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19227825Stheraven# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20227825Stheraven# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21227825Stheraven# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22227825Stheraven# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23227825Stheraven# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24227825Stheraven# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25227825Stheraven# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26227825Stheraven# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27227825Stheraven# THE POSSIBILITY OF SUCH DAMAGES.
28227825Stheraven#
29227825Stheraven# $FreeBSD: head/sys/modules/gpio/gpiopps/Makefile 300823 2016-05-27 04:34:42Z ian $
30227825Stheraven#
31227825Stheraven
32227825Stheraven.PATH:	${.CURDIR}/../../../dev/gpio/
33227825Stheraven
34227825StheravenKMOD=	gpiopps
35227825StheravenSRCS=	gpiopps.c
36227825StheravenSRCS+=	device_if.h bus_if.h gpio_if.h gpiobus_if.h opt_platform.h ofw_bus_if.h
37227825Stheraven
38227825StheravenCFLAGS+=  -I. -I${.CURDIR}/../../../dev/gpio/
39227825Stheraven
40227825Stheraven.include <bsd.kmod.mk>
41227825Stheraven