From 0db9f1f5c26e57a6383f4609c5605ed5d3d41fd1 Mon Sep 17 00:00:00 2001 From: Dr-Noob Date: Mon, 6 Dec 2021 22:36:12 +0100 Subject: [PATCH] [v1.01] Add more x86 archs to Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ece9d22..a24e774 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ COMMON_HDR = $(SRC_COMMON)ascii.h $(SRC_COMMON)cpu.h $(SRC_COMMON)udev.h $(SRC_C ifneq ($(OS),Windows_NT) arch := $(shell uname -m) - ifeq ($(arch), $(filter $(arch), x86_64 amd64 i686)) + ifeq ($(arch), $(filter $(arch), x86_64 amd64 i386 i486 i586 i686)) SRC_DIR=src/x86/ SOURCE += $(COMMON_SRC) $(SRC_DIR)cpuid.c $(SRC_DIR)apic.c $(SRC_DIR)cpuid_asm.c $(SRC_DIR)uarch.c HEADERS += $(COMMON_HDR) $(SRC_DIR)cpuid.h $(SRC_DIR)apic.h $(SRC_DIR)cpuid_asm.h $(SRC_DIR)uarch.h $(SRC_DIR)freq/freq.h