diff options
author | Jiri Olsa <[email protected]> | 2019-01-03 17:13:50 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2019-01-04 12:54:49 -0300 |
commit | 536cdb684d2d5139708d290b9dc124b1420886c1 (patch) | |
tree | 5de0b5310d8b46f4d0fb841b8cd94af13f8b8cd9 | |
parent | 302df34c4e64b9e83ee31cbf508b38b62b428bd6 (diff) |
tools iio: Override CFLAGS assignments
So user could specify outside CFLAGS values.
Signed-off-by: Jiri Olsa <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Andy Shevchenko <[email protected]>
Cc: Hartmut Knaack <[email protected]>
Cc: Jonathan Cameron <[email protected]>
Cc: Lars-Peter Clausen <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/iio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/iio/Makefile b/tools/iio/Makefile index 332ed2f6c2c2..e22378dba244 100644 --- a/tools/iio/Makefile +++ b/tools/iio/Makefile @@ -12,7 +12,7 @@ endif # (this improves performance and avoids hard-to-debug behaviour); MAKEFLAGS += -r -CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I$(OUTPUT)include +override CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I$(OUTPUT)include ALL_TARGETS := iio_event_monitor lsiio iio_generic_buffer ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS)) |