-
Notifications
You must be signed in to change notification settings - Fork 55.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iio: Move iio userspace applications out of staging
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>
- Loading branch information
1 parent
bdcb31d
commit 817020c
Showing
7 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
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 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.