mirror of
https://github.com/torvalds/linux.git
synced 2026-04-30 20:42:33 -04:00
Since commitee0778a301("tools/power: turbostat: make Makefile a bit more capable") turbostat's Makefile is using [...] BUILD_OUTPUT := $(PWD) [...] which obviously causes trouble when building "turbostat" with make -C /usr/src/linux/tools/power/x86/turbostat ARCH=x86 turbostat because GNU make does not update nor guarantee that $PWD is set. This patch changes the Makefile to use $CURDIR instead, which GNU make guarantees to set and update (i.e. when using "make -C ...") and also adds support for the O= option (see "make help" in your root of your kernel source tree for more details). Link: https://bugs.gentoo.org/show_bug.cgi?id=533918 Fixes:ee0778a301("tools/power: turbostat: make Makefile a bit more capable") Signed-off-by: Thomas D. <whissi@whissi.de> Cc: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Len Brown <len.brown@intel.com>
27 lines
629 B
Makefile
27 lines
629 B
Makefile
CC = $(CROSS_COMPILE)gcc
|
|
BUILD_OUTPUT := $(CURDIR)
|
|
PREFIX := /usr
|
|
DESTDIR :=
|
|
|
|
ifeq ("$(origin O)", "command line")
|
|
BUILD_OUTPUT := $(O)
|
|
endif
|
|
|
|
turbostat : turbostat.c
|
|
CFLAGS += -Wall
|
|
CFLAGS += -DMSRHEADER='"../../../../arch/x86/include/uapi/asm/msr-index.h"'
|
|
|
|
%: %.c
|
|
@mkdir -p $(BUILD_OUTPUT)
|
|
$(CC) $(CFLAGS) $< -o $(BUILD_OUTPUT)/$@
|
|
|
|
.PHONY : clean
|
|
clean :
|
|
@rm -f $(BUILD_OUTPUT)/turbostat
|
|
|
|
install : turbostat
|
|
install -d $(DESTDIR)$(PREFIX)/bin
|
|
install $(BUILD_OUTPUT)/turbostat $(DESTDIR)$(PREFIX)/bin/turbostat
|
|
install -d $(DESTDIR)$(PREFIX)/share/man/man8
|
|
install turbostat.8 $(DESTDIR)$(PREFIX)/share/man/man8
|