Vala bindings and examples added. Minor clean-up in header file
[freerunner-navigation-board:bmp085.git] / kernel / Makefile
1 #
2 # Makefile for miscellaneous I2C chip drivers.
3 #
4 # Do not add new drivers to this directory! It is DEPRECATED.
5 #
6 # Device drivers are better grouped according to the functionality they
7 # implement rather than to the bus they are connected to. In particular:
8 # * Hardware monitoring chip drivers go to drivers/hwmon
9 # * RTC chip drivers go to drivers/rtc
10 # * I/O expander drivers go to drivers/gpio
11 #
12
13 # obj-$(CONFIG_SENSORS_BMP085)  += bmp085.o
14 obj-m   += bmp085.o
15
16 # Uncomment the next line to use the i2c-stub driver. Comment for improved performance with the real chip;
17 EXTRA_CFLAGS := -DHMC5834_STUB_DRIVER
18
19 #KDIR := /lib/modules/$(shell uname -r)/build
20 KDIR := /home/chris/Projekte/openmoko/src/kernel/linux-2.6/GTA02
21
22 all:
23         make -C $(KDIR) M=$(PWD) modules
24
25 clean:
26         make -C $(KDIR) M=$(PWD) clean