brintos

brintos / linux-shallow public Read only

0
0
Text · 716 B · 3f71ce4 Raw
23 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Makefile for the i2c core.4#5 6obj-$(CONFIG_I2C_BOARDINFO)	+= i2c-boardinfo.o7obj-$(CONFIG_I2C)		+= i2c-core.o8i2c-core-objs 			:= i2c-core-base.o i2c-core-smbus.o9i2c-core-$(CONFIG_ACPI)		+= i2c-core-acpi.o10i2c-core-$(CONFIG_I2C_SLAVE) 	+= i2c-core-slave.o11i2c-core-$(CONFIG_OF) 		+= i2c-core-of.o12 13obj-$(CONFIG_I2C_SMBUS)		+= i2c-smbus.o14obj-$(CONFIG_I2C_CHARDEV)	+= i2c-dev.o15obj-$(CONFIG_I2C_MUX)		+= i2c-mux.o16obj-$(CONFIG_I2C_ATR)		+= i2c-atr.o17obj-y				+= algos/ busses/ muxes/18obj-$(CONFIG_I2C_STUB)		+= i2c-stub.o19obj-$(CONFIG_I2C_SLAVE_EEPROM)	+= i2c-slave-eeprom.o20obj-$(CONFIG_I2C_SLAVE_TESTUNIT)	+= i2c-slave-testunit.o21 22ccflags-$(CONFIG_I2C_DEBUG_CORE) := -DDEBUG23