You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
354 B
11 lines
354 B
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the IIO Dummy Driver
|
|
#
|
|
|
|
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
|
|
|