Subversion Repositories shark

Rev

Rev 421 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
170 giacomo 1
# National Instruments PCI6025E Driver
2
 
3
ifndef BASE
4
BASE=../..
5
endif
6
 
7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = bttv
10
 
11
OBJS_PATH     = $(BASE)/drivers/bttv
12
 
13
OBJS = i2c-core.o i2c-algo-bit.o gpio.o bttv-if.o bttv-cards.o bttv-driver.o fg.o
14
 
15
OTHERINCL += -I$(BASE)/drivers/bttv/include -I$(BASE)/drivers/linuxc24/include
16
 
17
C_OPT += -D__KERNEL__
18
 
19
include $(BASE)/config/lib.mk
20
 
21
clean::
22
	rm -f $(OBJS)
23