]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/modules/bktr/bktr/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / sys / modules / bktr / bktr / Makefile
1 # $FreeBSD$
2
3 # Makefile for the bktr Brooktree Bt848/Bt878 PCI video capture device
4
5 .PATH: ${.CURDIR}/../../../dev/bktr
6
7 KMOD=   bktr 
8 SRCS=   bktr_core.c bktr_os.c bktr_audio.c bktr_tuner.c bktr_card.c msp34xx.c \
9         opt_bktr.h bus_if.h device_if.h \
10         pci_if.h
11
12 CFLAGS+= -DBKTR_FREEBSD_MODULE
13
14 .if defined(BKTR_USE_FREEBSD_SMBUS)
15 SRCS+=  bktr_i2c.c iicbb_if.h iicbus_if.h smbus_if.h
16 CFLAGS+= -DBKTR_USE_FREEBSD_SMBUS
17 .endif
18
19 .include <bsd.kmod.mk>