123456789101112131415161718192021222324 |
- #
- # Makefile for the industrial I/O core.
- #
- obj-$(CONFIG_IIO_SIMPLE_DUMMY) += iio_dummy.o
- iio_dummy-y := iio_simple_dummy.o
- iio_dummy-$(CONFIG_IIO_SIMPLE_DUMMY_EVENTS) += iio_simple_dummy_events.o
- iio_dummy-$(CONFIG_IIO_SIMPLE_DUMMY_BUFFER) += iio_simple_dummy_buffer.o
- obj-$(CONFIG_IIO_DUMMY_EVGEN) += iio_dummy_evgen.o
- obj-y += accel/
- obj-y += adc/
- obj-y += addac/
- obj-y += cdc/
- obj-y += frequency/
- obj-y += gyro/
- obj-y += impedance-analyzer/
- obj-y += light/
- obj-y += magnetometer/
- obj-y += meter/
- obj-y += resolver/
- obj-y += trigger/
|