From acff6c83eb28c0c123b4231e88056f6a90793e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Iva=C8=99cu?= Date: Wed, 18 Sep 2019 17:54:53 +0300 Subject: [PATCH] Makefile: i386, i686 -> x86 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 8a605fd..1100581 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ ARCH := $(shell uname -m) +ifeq ($(ARCH),$(filter $(ARCH),i386 i686)) + override ARCH = x86 +endif CFLAGS = -ggdb3 -O2 -Wall -Iarch/${ARCH}