Skip to content
Snippets Groups Projects
Commit 4bf3bd0f authored by Jiri Olsa's avatar Jiri Olsa Committed by Shuah Khan
Browse files

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: default avatarJiri Olsa <jolsa@kernel.org>
Acked-by: default avatarThomas Renninger <trenn@suse.de>
Signed-off-by: default avatarShuah Khan (Samsung OSG) <shuah@kernel.org>
parent 9de9aa45
No related branches found
No related tags found
No related merge requests found
...@@ -13,10 +13,10 @@ INSTALL = /usr/bin/install ...@@ -13,10 +13,10 @@ INSTALL = /usr/bin/install
default: all default: all
$(OUTPUT)centrino-decode: ../i386/centrino-decode.c $(OUTPUT)centrino-decode: ../i386/centrino-decode.c
$(CC) $(CFLAGS) -o $@ $< $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $<
$(OUTPUT)powernow-k8-decode: ../i386/powernow-k8-decode.c $(OUTPUT)powernow-k8-decode: ../i386/powernow-k8-decode.c
$(CC) $(CFLAGS) -o $@ $< $(CC) $(CFLAGS) -o $@ $(LDFLAGS) $<
all: $(OUTPUT)centrino-decode $(OUTPUT)powernow-k8-decode all: $(OUTPUT)centrino-decode $(OUTPUT)powernow-k8-decode
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment