mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-02 02:34:05 +08:00
d8eabc3731
Greg pointed out that speculation related bit defines are using (1 << N) format instead of BIT(N). Aside of that (1 << N) is wrong as it should use 1UL at least. Clean it up. [ Josh Poimboeuf: Fix tools build ] Reported-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Borislav Petkov <bp@suse.de> Reviewed-by: Frederic Weisbecker <frederic@kernel.org> Reviewed-by: Jon Masters <jcm@redhat.com> Tested-by: Jon Masters <jcm@redhat.com>
29 lines
809 B
Makefile
29 lines
809 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
CC = $(CROSS_COMPILE)gcc
|
|
BUILD_OUTPUT := $(CURDIR)
|
|
PREFIX := /usr
|
|
DESTDIR :=
|
|
|
|
ifeq ("$(origin O)", "command line")
|
|
BUILD_OUTPUT := $(O)
|
|
endif
|
|
|
|
x86_energy_perf_policy : x86_energy_perf_policy.c
|
|
override CFLAGS += -Wall -I../../../include
|
|
override CFLAGS += -DMSRHEADER='"../../../../arch/x86/include/asm/msr-index.h"'
|
|
|
|
%: %.c
|
|
@mkdir -p $(BUILD_OUTPUT)
|
|
$(CC) $(CFLAGS) $< -o $(BUILD_OUTPUT)/$@ $(LDFLAGS)
|
|
|
|
.PHONY : clean
|
|
clean :
|
|
@rm -f $(BUILD_OUTPUT)/x86_energy_perf_policy
|
|
|
|
install : x86_energy_perf_policy
|
|
install -d $(DESTDIR)$(PREFIX)/bin
|
|
install $(BUILD_OUTPUT)/x86_energy_perf_policy $(DESTDIR)$(PREFIX)/bin/x86_energy_perf_policy
|
|
install -d $(DESTDIR)$(PREFIX)/share/man/man8
|
|
install -m 644 x86_energy_perf_policy.8 $(DESTDIR)$(PREFIX)/share/man/man8
|
|
|