Skip to content

Commit

Permalink
cpupower: avoid using symlinks
Browse files Browse the repository at this point in the history
Reference the source directly, don't create symlinks.

Signed-off-by: WANG Cong <amwang@redhat.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
  • Loading branch information
Amerigo Wang authored and Dominik Brodowski committed Aug 15, 2011
1 parent 322a8b0 commit 75f25bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
8 changes: 4 additions & 4 deletions tools/power/cpupower/debug/x86_64/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
default: all

centrino-decode: centrino-decode.c
$(CC) $(CFLAGS) -o centrino-decode centrino-decode.c
centrino-decode: ../i386/centrino-decode.c
$(CC) $(CFLAGS) -o $@ $<

powernow-k8-decode: powernow-k8-decode.c
$(CC) $(CFLAGS) -o powernow-k8-decode powernow-k8-decode.c
powernow-k8-decode: ../i386/powernow-k8-decode.c
$(CC) $(CFLAGS) -o $@ $<

all: centrino-decode powernow-k8-decode

Expand Down
1 change: 0 additions & 1 deletion tools/power/cpupower/debug/x86_64/centrino-decode.c

This file was deleted.

1 change: 0 additions & 1 deletion tools/power/cpupower/debug/x86_64/powernow-k8-decode.c

This file was deleted.

0 comments on commit 75f25bd

Please sign in to comment.