]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - tools/power/x86/turbostat/Makefile
spi: orion: remove redundant assignment of status to zero
[mirror_ubuntu-bionic-kernel.git] / tools / power / x86 / turbostat / Makefile
1 CC = $(CROSS_COMPILE)gcc
2 BUILD_OUTPUT := $(CURDIR)
3 PREFIX ?= /usr
4 DESTDIR ?=
5
6 ifeq ("$(origin O)", "command line")
7 BUILD_OUTPUT := $(O)
8 endif
9
10 turbostat : turbostat.c
11 CFLAGS += -Wall
12 CFLAGS += -DMSRHEADER='"../../../../arch/x86/include/asm/msr-index.h"'
13 CFLAGS += -DINTEL_FAMILY_HEADER='"../../../../arch/x86/include/asm/intel-family.h"'
14
15 %: %.c
16 @mkdir -p $(BUILD_OUTPUT)
17 $(CC) $(CFLAGS) $< -o $(BUILD_OUTPUT)/$@
18
19 .PHONY : clean
20 clean :
21 @rm -f $(BUILD_OUTPUT)/turbostat
22
23 install : turbostat
24 install -d $(DESTDIR)$(PREFIX)/bin
25 install $(BUILD_OUTPUT)/turbostat $(DESTDIR)$(PREFIX)/bin/turbostat
26 install -d $(DESTDIR)$(PREFIX)/share/man/man8
27 install turbostat.8 $(DESTDIR)$(PREFIX)/share/man/man8