makefile: add include path for arch/common

pull/17/head
Ariadne Conill 2020-03-29 13:46:19 +00:00
parent 87f58af294
commit 8536f1fa3b
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ifeq ($(ARCH),$(filter $(ARCH),i386 i686))
override ARCH = x86
endif
CFLAGS = -ggdb3 -O2 -Wall -Iarch/${ARCH}
CFLAGS = -ggdb3 -O2 -Wall -Iarch/${ARCH} -Iarch/common
LIBUCONTEXT_C_SRC = $(wildcard arch/${ARCH}/*.c)
LIBUCONTEXT_S_SRC = $(wildcard arch/${ARCH}/*.S)