Rev 425 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
420 | giacomo | 1 | # I2C Driver |
2 | |||
3 | ifndef BASE |
||
4 | BASE=../.. |
||
5 | endif |
||
6 | |||
7 | include $(BASE)/config/config.mk |
||
8 | |||
9 | LIBRARY = i2c |
||
10 | |||
11 | OBJS_PATH = $(BASE)/drivers/i2c |
||
12 | |||
458 | giacomo | 13 | OBJS = i2c-dev.o i2c-core.o algos/i2c-algo-bit.o |
420 | giacomo | 14 | |
15 | OTHERINCL += -I$(BASE)/drivers/linuxc26/include |
||
16 | |||
17 | C_OPT += -D__KERNEL__ |
||
18 | |||
19 | include $(BASE)/config/lib.mk |
||
20 | |||
21 | clean:: |
||
22 | rm -f $(OBJS) |
||
23 |