diff options
author | Jiri Olsa <jolsa@kernel.org> | 2018-10-16 17:06:08 +0200 |
---|---|---|
committer | Shuah Khan <shuah@kernel.org> | 2018-11-06 08:54:16 -0700 |
commit | 4bf3bd0f15a9c81064c0b430d04d221ffcc503cc (patch) | |
tree | 8cdfe7381ad6ca1223a51324f5e83c519c61d908 /tools | |
parent | 9de9aa45e9bd67232e000cca42ceb134b8ae51b6 (diff) | |
download | linux-4bf3bd0f15a9c81064c0b430d04d221ffcc503cc.tar.gz linux-4bf3bd0f15a9c81064c0b430d04d221ffcc503cc.tar.bz2 linux-4bf3bd0f15a9c81064c0b430d04d221ffcc503cc.zip |
tools cpupower debug: Allow to use outside build flags
Adding CFLAGS and LDFLAGS to be used during the build.
Cc: Thomas Renninger <trenn@suse.com>
Cc: Shuah Khan <shuah@kernel.org>
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Acked-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Shuah Khan (Samsung OSG) <shuah@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/cpupower/debug/x86_64/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/power/cpupower/debug/x86_64/Makefile b/tools/power/cpupower/debug/x86_64/Makefile index 59af84b8ef45..b1b6c43644e7 100644 --- a/tools/power/cpupower/debug/x86_64/Makefile +++ b/tools/power/cpupower/debug/x86_64/Makefile @@ -13,10 +13,10 @@ INSTALL = /usr/bin/install default: all $(OUTPUT)centrino-decode: ../i386/centrino-decode.c - $(CC) $(CFLAGS) -o $@ $< + $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $< $(OUTPUT)powernow-k8-decode: ../i386/powernow-k8-decode.c - $(CC) $(CFLAGS) -o $@ $< + $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $< all: $(OUTPUT)centrino-decode $(OUTPUT)powernow-k8-decode |