13 lines
381 B
Makefile
13 lines
381 B
Makefile
#
|
|
# Makefile for IIO chemical sensors
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_ATLAS_PH_SENSOR) += atlas-ph-sensor.o
|
|
obj-$(CONFIG_BME680) += bme680_core.o
|
|
obj-$(CONFIG_BME680_I2C) += bme680_i2c.o
|
|
obj-$(CONFIG_BME680_SPI) += bme680_spi.o
|
|
obj-$(CONFIG_CCS811) += ccs811.o
|
|
obj-$(CONFIG_IAQCORE) += ams-iaq-core.o
|
|
obj-$(CONFIG_VZ89X) += vz89x.o
|