1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Ahmad Khalifa <ahmad@khalifa.ws>
Date: Fri, 15 Nov 2024 19:40:54 +0000
Forwarded: not-needed
Subject: [PATCH] Add Include path where it is optional
---
util/intelmetool/Makefile | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/util/intelmetool/Makefile b/util/intelmetool/Makefile
index 375118576..b929f1b87 100644
--- a/util/intelmetool/Makefile
+++ b/util/intelmetool/Makefile
@@ -6,8 +6,7 @@ TOP ?= $(abspath ../..)
CC ?= gcc
INSTALL ?= /usr/bin/env install
PREFIX ?= /usr/local
-CFLAGS ?= -O0 -g -Wall -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-unused-function \
- -I $(TOP)/src/commonlib/bsd/include
+CFLAGS += -I $(TOP)/src/commonlib/bsd/include
LDFLAGS += -lpci -lz
OBJS = intelmetool.o me.o me_status.o mmap.o rcba.o msr.o
--
2.39.5
|