mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-07 21:53:44 +00:00
817020cfb3
This patch moves iio userspace applications out of staging, to tools/iio/ and adds a Makefile in order to compile them easily. It also adds tools/iio/ to MAINTAINERS file. Signed-off-by: Roberta Dobrescu <roberta.dobrescu@gmail.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
17 lines
292 B
Makefile
17 lines
292 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -g
|
|
|
|
all: iio_event_monitor lsiio generic_buffer
|
|
|
|
iio_event_monitor: iio_event_monitor.o iio_utils.o
|
|
|
|
lsiio: lsiio.o iio_utils.o
|
|
|
|
generic_buffer: generic_buffer.o iio_utils.o
|
|
|
|
%.o: %.c iio_utils.h
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.o iio_event_monitor lsiio generic_buffer
|