Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 297567
b: refs/heads/master
c: f166033
h: refs/heads/master
i:
  297565: 3949d3e
  297563: f738418
  297559: c3bd691
  297551: 2e8009d
  297535: 255e619
v: v3
  • Loading branch information
Franck Bui-Huu authored and Dominik Brodowski committed Mar 3, 2012
1 parent 91c3390 commit 4953e7d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7490ca1ea5af18bd0ceb3b96ddb2f10b09e08b5d
refs/heads/master: f16603386b38c28979f4df1cafdc2fe73fa87d37
14 changes: 13 additions & 1 deletion trunk/tools/power/cpupower/debug/i386/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ ifeq ("$(origin O)", "command line")
OUTPUT := $(O)/
endif

DESTDIR =
bindir = /usr/bin

INSTALL = /usr/bin/install


default: all

Expand All @@ -23,4 +28,11 @@ all: $(OUTPUT)centrino-decode $(OUTPUT)dump_psb $(OUTPUT)intel_gsic $(OUTPUT)pow
clean:
rm -rf $(OUTPUT){centrino-decode,dump_psb,intel_gsic,powernow-k8-decode}

.PHONY: all default clean
install:
$(INSTALL) -d $(DESTDIR)${bindir}
$(INSTALL) $(OUTPUT)centrino-decode $(DESTDIR)${bindir}
$(INSTALL) $(OUTPUT)powernow-k8-decode $(DESTDIR)${bindir}
$(INSTALL) $(OUTPUT)dump_psb $(DESTDIR)${bindir}
$(INSTALL) $(OUTPUT)intel_gsic $(DESTDIR)${bindir}

.PHONY: all default clean install
12 changes: 11 additions & 1 deletion trunk/tools/power/cpupower/debug/x86_64/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ ifeq ("$(origin O)", "command line")
OUTPUT := $(O)/
endif

DESTDIR =
bindir = /usr/bin

INSTALL = /usr/bin/install


default: all

Expand All @@ -17,4 +22,9 @@ all: $(OUTPUT)centrino-decode $(OUTPUT)powernow-k8-decode
clean:
rm -rf $(OUTPUT)centrino-decode $(OUTPUT)powernow-k8-decode

.PHONY: all default clean
install:
$(INSTALL) -d $(DESTDIR)${bindir}
$(INSTALL) $(OUTPUT)centrino-decode $(DESTDIR)${bindir}
$(INSTALL) $(OUTPUT)powernow-k8-decode $(DESTDIR)${bindir}

.PHONY: all default clean install

0 comments on commit 4953e7d

Please sign in to comment.