Makefile revision 262559
1169689Skan#
2169689Skan# Copyright (c) 2012 Adrian Chadd, Xenion Pty Ltd
3169689Skan# All rights reserved.
4169689Skan#
5169689Skan# Redistribution and use in source and binary forms, with or without
6169689Skan# modification, are permitted provided that the following conditions
7169689Skan# are met:
8169689Skan# 1. Redistributions of source code must retain the above copyright
9169689Skan#    notice, this list of conditions and the following disclaimer,
10169689Skan#    without modification.
11169689Skan# 2. Redistributions in binary form must reproduce at minimum a disclaimer
12169689Skan#    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13169689Skan#    redistribution must be conditioned upon including a substantially
14169689Skan#    similar Disclaimer requirement for further binary redistribution.
15169689Skan#
16169689Skan# NO WARRANTY
17169689Skan# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18169689Skan# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19169689Skan# LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20169689Skan# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21169689Skan# THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22169689Skan# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23169689Skan# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24169689Skan# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25169689Skan# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26169689Skan# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27169689Skan# THE POSSIBILITY OF SUCH DAMAGES.
28169689Skan#
29169689Skan# $FreeBSD: head/sys/modules/gpio/gpioiic/Makefile 262559 2014-02-27 13:26:41Z loos $
30169689Skan#
31169689Skan
32169689Skan.PATH:	${.CURDIR}/../../../dev/gpio/
33169689Skan
34169689SkanKMOD=	gpioiic
35169689SkanSRCS=	gpioiic.c
36169689SkanSRCS+=	device_if.h bus_if.h gpio_if.h gpiobus_if.h iicbus_if.h iicbb_if.h
37169689SkanSRCS+=	opt_platform.h
38169689Skan
39169689SkanCFLAGS+=  -I. -I${.CURDIR}/../../../dev/gpio/
40169689Skan
41169689Skan.include <bsd.kmod.mk>
42169689Skan