Subversion Repositories shark

Rev

Rev 773 | Go to most recent revision | Details | 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
 
13
OBJS = cm7326.o
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