Makefile 205 B

1234567891011
  1. #
  2. # Makefile for the i2c core.
  3. #
  4. obj-$(CONFIG_I2C) += i2c-core.o
  5. obj-$(CONFIG_I2C_CHARDEV) += i2c-dev.o
  6. obj-y += busses/ chips/ algos/
  7. ifeq ($(CONFIG_I2C_DEBUG_CORE),y)
  8. EXTRA_CFLAGS += -DDEBUG
  9. endif