https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 920919a00e36280de14ac22ab4162eb6172f4b1c authored by Jason Self on 05 January 2011, 00:50:26 UTC
Linux-libre 2.6.37-gnu1
Tip revision: 920919a
Makefile
#
# Makefile for the i2c core.
#

obj-$(CONFIG_I2C_BOARDINFO)	+= i2c-boardinfo.o
obj-$(CONFIG_I2C)		+= i2c-core.o
obj-$(CONFIG_I2C_SMBUS)		+= i2c-smbus.o
obj-$(CONFIG_I2C_CHARDEV)	+= i2c-dev.o
obj-$(CONFIG_I2C_MUX)		+= i2c-mux.o
obj-y				+= algos/ busses/ muxes/

ccflags-$(CONFIG_I2C_DEBUG_CORE) := -DDEBUG
back to top