Subversion Repositories shark

Rev

Rev 774 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
425 giacomo 1
# CM7326 - Driver for pc104+ framegrabber
2
 
3
ifndef BASE
4
BASE=../..
5
endif
6
 
7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = cm7326
10
 
11
OBJS_PATH     = $(BASE)/drivers/cm7326
12
 
774 giacomo 13
OBJS = cm7326.o saa7146_core.o saa7146_hlp.o saa7146_i2c.o saa7146_video.o saa7146_fops.o
425 giacomo 14
 
15
OTHERINCL += -I$(BASE)/drivers/cm7326/include -I$(BASE)/drivers/linuxc26/include -I$(BASE)/drivers/i2c/include
16
 
17
C_OPT += -D__KERNEL__
18
 
19
include $(BASE)/config/lib.mk
20
 
21
clean::
22
	rm -f $(OBJS)
23