Makefile revision 302408
10SN/A#
25776SN/A# Copyright (c) 2012 Adrian Chadd, Xenion Pty Ltd
30SN/A# All rights reserved.
40SN/A#
50SN/A# Redistribution and use in source and binary forms, with or without
60SN/A# modification, are permitted provided that the following conditions
70SN/A# are met:
80SN/A# 1. Redistributions of source code must retain the above copyright
90SN/A#    notice, this list of conditions and the following disclaimer,
100SN/A#    without modification.
110SN/A# 2. Redistributions in binary form must reproduce at minimum a disclaimer
120SN/A#    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
130SN/A#    redistribution must be conditioned upon including a substantially
140SN/A#    similar Disclaimer requirement for further binary redistribution.
150SN/A#
160SN/A# NO WARRANTY
170SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
180SN/A# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
191472SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
201472SN/A# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
211472SN/A# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
220SN/A# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
230SN/A# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
240SN/A# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
250SN/A# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
260SN/A# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
270SN/A# THE POSSIBILITY OF SUCH DAMAGES.
280SN/A#
294892SN/A# $FreeBSD: stable/11/sys/modules/gpio/gpiobus/Makefile 300823 2016-05-27 04:34:42Z ian $
304892SN/A#
310SN/A
320SN/A.PATH:	${.CURDIR}/../../../dev/gpio/
330SN/A
340SN/AKMOD=	gpiobus
350SN/ASRCS=	gpiobus.c gpioc.c
360SN/ASRCS+=	gpio_if.c gpio_if.h gpiobus_if.c gpiobus_if.h ofw_bus_if.h
370SN/ASRCS+=	device_if.h bus_if.h opt_platform.h
380SN/A
390SN/ACFLAGS+=  -I. -I${.CURDIR}/../../../dev/gpio/
400SN/A
410SN/A.include <bsd.kmod.mk>
420SN/A