aboutsummaryrefslogtreecommitdiffstats
path: root/tools/power/cpupower/debug/x86_64/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/power/cpupower/debug/x86_64/Makefile')
-rw-r--r--tools/power/cpupower/debug/x86_64/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/power/cpupower/debug/x86_64/Makefile b/tools/power/cpupower/debug/x86_64/Makefile
new file mode 100644
index 00000000000..dbf13998462
--- /dev/null
+++ b/tools/power/cpupower/debug/x86_64/Makefile
@@ -0,0 +1,14 @@
1default: all
2
3centrino-decode: centrino-decode.c
4 $(CC) $(CFLAGS) -o centrino-decode centrino-decode.c
5
6powernow-k8-decode: powernow-k8-decode.c
7 $(CC) $(CFLAGS) -o powernow-k8-decode powernow-k8-decode.c
8
9all: centrino-decode powernow-k8-decode
10
11clean:
12 rm -rf centrino-decode powernow-k8-decode
13
14.PHONY: all default clean