• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# SPDX-License-Identifier: GPL-2.0
2CC		= $(CROSS_COMPILE)gcc
3BUILD_OUTPUT	:= $(CURDIR)
4PREFIX		?= /usr
5DESTDIR		?=
6
7ifeq ("$(origin O)", "command line")
8	BUILD_OUTPUT := $(O)
9endif
10
11turbostat : turbostat.c
12override CFLAGS +=	-O2 -Wall -I../../../include
13override CFLAGS +=	-DMSRHEADER='"../../../../arch/x86/include/asm/msr-index.h"'
14override CFLAGS +=	-DINTEL_FAMILY_HEADER='"../../../../arch/x86/include/asm/intel-family.h"'
15override CFLAGS +=	-D_FORTIFY_SOURCE=2
16
17%: %.c
18	@mkdir -p $(BUILD_OUTPUT)
19	$(CC) $(CFLAGS) $< -o $(BUILD_OUTPUT)/$@ $(LDFLAGS) -lcap
20
21.PHONY : clean
22clean :
23	@rm -f $(BUILD_OUTPUT)/turbostat
24
25install : turbostat
26	install -d  $(DESTDIR)$(PREFIX)/bin
27	install $(BUILD_OUTPUT)/turbostat $(DESTDIR)$(PREFIX)/bin/turbostat
28	install -d  $(DESTDIR)$(PREFIX)/share/man/man8
29	install -m 644 turbostat.8 $(DESTDIR)$(PREFIX)/share/man/man8
30