Skip to content

Commit

Permalink
tools: iio: Rename generic_buffer to iio_generic_buffer
Browse files Browse the repository at this point in the history
This makes it clear that generic_buffer is an IIO tool
and also complies with filename conventions in tools/iio.

Signed-off-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
  • Loading branch information
Daniel Baluta authored and Jonathan Cameron committed May 29, 2016
1 parent 0c4b650 commit 5d48d6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/iio/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ BINDIR=usr/bin
INSTALL_PROGRAM=install -m 755 -p
DEL_FILE=rm -f

all: iio_event_monitor lsiio generic_buffer
all: iio_event_monitor lsiio iio_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
iio_generic_buffer: iio_generic_buffer.o iio_utils.o

%.o: %.c iio_utils.h

install:
- mkdir -p $(INSTALL_ROOT)/$(BINDIR)
- $(INSTALL_PROGRAM) "iio_event_monitor" "$(INSTALL_ROOT)/$(BINDIR)/iio_event_monitor"
- $(INSTALL_PROGRAM) "lsiio" "$(INSTALL_ROOT)/$(BINDIR)/lsiio"
- $(INSTALL_PROGRAM) "generic_buffer" "$(INSTALL_ROOT)/$(BINDIR)/generic_buffer"
- $(INSTALL_PROGRAM) "iio_generic_buffer" "$(INSTALL_ROOT)/$(BINDIR)/iio_generic_buffer"

uninstall:
$(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/iio_event_monitor"
$(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/lsiio"
$(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/generic_buffer"
$(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/iio_generic_buffer"

.PHONY: clean
clean:
rm -f *.o iio_event_monitor lsiio generic_buffer
rm -f *.o iio_event_monitor lsiio iio_generic_buffer
File renamed without changes.

0 comments on commit 5d48d6b

Please sign in to comment.