Makefile revision 227652
10SN/A#
22362SN/A# $FreeBSD: head/sys/modules/virtio/pci/Makefile 227652 2011-11-18 05:43:43Z grehan $
30SN/A#
40SN/A# Redistribution and use in source and binary forms, with or without
50SN/A# modification, are permitted provided that the following conditions
60SN/A# are met:
72362SN/A# 1. Redistributions of source code must retain the above copyright
80SN/A#    notice, this list of conditions and the following disclaimer.
92362SN/A# 2. Redistributions in binary form must reproduce the above copyright
100SN/A#    notice, this list of conditions and the following disclaimer in the
110SN/A#    documentation and/or other materials provided with the distribution.
120SN/A#
130SN/A# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
140SN/A# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
150SN/A# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
160SN/A# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
170SN/A# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
180SN/A# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
190SN/A# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
200SN/A# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
212362SN/A# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
222362SN/A# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
232362SN/A# SUCH DAMAGE.
240SN/A#
250SN/A
260SN/A.PATH: ${.CURDIR}/../../../dev/virtio/pci
270SN/A
280SN/AKMOD=	virtio_pci
290SN/ASRCS=	virtio_pci.c
300SN/ASRCS+=	virtio_bus_if.h virtio_if.h 
310SN/ASRCS+=	bus_if.h device_if.h pci_if.h
320SN/A
330SN/AMFILES=	kern/bus_if.m kern/device_if.m dev/pci/pci_if.m \
340SN/A	dev/virtio/virtio_bus_if.m dev/virtio/virtio_if.m
350SN/A
360SN/A.include <bsd.kmod.mk>
370SN/A