Makefile revision 285830
1108088Stjr#
2108088Stjr# Copyright (c) 2012 Adrian Chadd, Xenion Pty Ltd
3108088Stjr# All rights reserved.
4108088Stjr#
5108088Stjr# Redistribution and use in source and binary forms, with or without
6108088Stjr# modification, are permitted provided that the following conditions
7108088Stjr# are met:
8108088Stjr# 1. Redistributions of source code must retain the above copyright
9108088Stjr#    notice, this list of conditions and the following disclaimer,
10108088Stjr#    without modification.
11108088Stjr# 2. Redistributions in binary form must reproduce at minimum a disclaimer
12108088Stjr#    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13108088Stjr#    redistribution must be conditioned upon including a substantially
14108088Stjr#    similar Disclaimer requirement for further binary redistribution.
15108088Stjr#
16108088Stjr# NO WARRANTY
17108088Stjr# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18108088Stjr# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19108088Stjr# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20108088Stjr# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21108088Stjr# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22108088Stjr# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23108088Stjr# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24108088Stjr# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25108088Stjr# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26108088Stjr# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27108088Stjr# THE POSSIBILITY OF SUCH DAMAGES.
28108088Stjr#
29108088Stjr# $FreeBSD: releng/10.2/sys/modules/gpio/gpiobus/Makefile 266105 2014-05-15 01:27:53Z loos $
30108088Stjr#
31108088Stjr
32108088Stjr.PATH:	${.CURDIR}/../../../dev/gpio/
33108088Stjr
34108088StjrKMOD=	gpiobus
35108088StjrSRCS=	gpiobus.c
36108088StjrSRCS+=	device_if.h bus_if.h gpio_if.h gpiobus_if.h opt_platform.h
37108088Stjr
38108088StjrCFLAGS+=  -I. -I${.CURDIR}/../../../dev/gpio/
39108088Stjr
40108088Stjr.include <bsd.kmod.mk>
41108088Stjr