~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/iio/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/iio/Makefile (Version linux-6.12-rc7) and /tools/iio/Makefile (Version linux-4.12.14)


  1 # SPDX-License-Identifier: GPL-2.0             !!   1 CC = $(CROSS_COMPILE)gcc
  2 include ../scripts/Makefile.include            !!   2 CFLAGS += -Wall -g -D_GNU_SOURCE
  3                                                     3 
  4 bindir ?= /usr/bin                             !!   4 BINDIR=usr/bin
                                                   >>   5 INSTALL_PROGRAM=install -m 755 -p
                                                   >>   6 DEL_FILE=rm -f
  5                                                     7 
  6 ifeq ($(srctree),)                             !!   8 all: iio_event_monitor lsiio iio_generic_buffer
  7 srctree := $(patsubst %/,%,$(dir $(CURDIR)))   << 
  8 srctree := $(patsubst %/,%,$(dir $(srctree)))  << 
  9 endif                                          << 
 10                                                << 
 11 # Do not use make's built-in rules             << 
 12 # (this improves performance and avoids hard-t << 
 13 MAKEFLAGS += -r                                << 
 14                                                << 
 15 override CFLAGS += -O2 -Wall -g -D_GNU_SOURCE  << 
 16                                                << 
 17 ALL_TARGETS := iio_event_monitor lsiio iio_gen << 
 18 ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_ << 
 19                                                << 
 20 all: $(ALL_PROGRAMS)                           << 
 21                                                << 
 22 export srctree OUTPUT CC LD CFLAGS             << 
 23 include $(srctree)/tools/build/Makefile.includ << 
 24                                                << 
 25 #                                              << 
 26 # We need the following to be outside of kerne << 
 27 #                                              << 
 28 $(OUTPUT)include/linux/iio: ../../include/uapi << 
 29         mkdir -p $(OUTPUT)include/linux/iio 2> << 
 30         ln -sf $(CURDIR)/../../include/uapi/li << 
 31         ln -sf $(CURDIR)/../../include/uapi/li << 
 32         ln -sf $(CURDIR)/../../include/uapi/li << 
 33                                                << 
 34 prepare: $(OUTPUT)include/linux/iio            << 
 35                                                << 
 36 IIO_UTILS_IN := $(OUTPUT)iio_utils-in.o        << 
 37 $(IIO_UTILS_IN): prepare FORCE                 << 
 38         $(Q)$(MAKE) $(build)=iio_utils         << 
 39                                                << 
 40 LSIIO_IN := $(OUTPUT)lsiio-in.o                << 
 41 $(LSIIO_IN): prepare FORCE $(OUTPUT)iio_utils- << 
 42         $(Q)$(MAKE) $(build)=lsiio             << 
 43 $(OUTPUT)lsiio: $(LSIIO_IN)                    << 
 44         $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS << 
 45                                                << 
 46 IIO_EVENT_MONITOR_IN := $(OUTPUT)iio_event_mon << 
 47 $(IIO_EVENT_MONITOR_IN): prepare FORCE $(OUTPU << 
 48         $(Q)$(MAKE) $(build)=iio_event_monitor << 
 49 $(OUTPUT)iio_event_monitor: $(IIO_EVENT_MONITO << 
 50         $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS << 
 51                                                << 
 52 IIO_GENERIC_BUFFER_IN := $(OUTPUT)iio_generic_ << 
 53 $(IIO_GENERIC_BUFFER_IN): prepare FORCE $(OUTP << 
 54         $(Q)$(MAKE) $(build)=iio_generic_buffe << 
 55 $(OUTPUT)iio_generic_buffer: $(IIO_GENERIC_BUF << 
 56         $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS << 
 57                                                     9 
 58 clean:                                         !!  10 iio_event_monitor: iio_event_monitor.o iio_utils.o
 59         rm -f $(ALL_PROGRAMS)                  !!  11 
 60         rm -rf $(OUTPUT)include/linux/iio      !!  12 lsiio: lsiio.o iio_utils.o
 61         find $(or $(OUTPUT),.) -name '*.o' -de !!  13 
 62                                                !!  14 iio_generic_buffer: iio_generic_buffer.o iio_utils.o
 63 install: $(ALL_PROGRAMS)                       << 
 64         install -d -m 755 $(DESTDIR)$(bindir); << 
 65         for program in $(ALL_PROGRAMS); do     << 
 66                 install $$program $(DESTDIR)$( << 
 67         done                                   << 
 68                                                    15 
 69 FORCE:                                         !!  16 %.o: %.c iio_utils.h
 70                                                    17 
 71 .PHONY: all install clean FORCE prepare        !!  18 install:
                                                   >>  19         - mkdir -p $(INSTALL_ROOT)/$(BINDIR)
                                                   >>  20         - $(INSTALL_PROGRAM) "iio_event_monitor" "$(INSTALL_ROOT)/$(BINDIR)/iio_event_monitor"
                                                   >>  21         - $(INSTALL_PROGRAM) "lsiio" "$(INSTALL_ROOT)/$(BINDIR)/lsiio"
                                                   >>  22         - $(INSTALL_PROGRAM) "iio_generic_buffer" "$(INSTALL_ROOT)/$(BINDIR)/iio_generic_buffer"
                                                   >>  23 
                                                   >>  24 uninstall:
                                                   >>  25         $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/iio_event_monitor"
                                                   >>  26         $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/lsiio"
                                                   >>  27         $(DEL_FILE) "$(INSTALL_ROOT)/$(BINDIR)/iio_generic_buffer"
                                                   >>  28 
                                                   >>  29 .PHONY: clean
                                                   >>  30 clean:
                                                   >>  31         rm -f *.o iio_event_monitor lsiio iio_generic_buffer
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php