Files
linux/tools/power/cpupower/debug/x86_64/Makefile
Amerigo Wang 75f25bd31d cpupower: avoid using symlinks
Reference the source directly, don't create symlinks.

Signed-off-by: WANG Cong <amwang@redhat.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
2011-08-15 20:02:50 +02:00

15 lines
278 B
Makefile

default: all
centrino-decode: ../i386/centrino-decode.c
$(CC) $(CFLAGS) -o $@ $<
powernow-k8-decode: ../i386/powernow-k8-decode.c
$(CC) $(CFLAGS) -o $@ $<
all: centrino-decode powernow-k8-decode
clean:
rm -rf centrino-decode powernow-k8-decode
.PHONY: all default clean