mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 18:56:00 +00:00
The files idtEnt.h and segselect.h in shared are linked from the source tree for no good reason adding and extra top level directory that might be confusing. The shared/ here means shared between host and target, this is not longer necessary in our build system. Change-Id: Id9665e10de7a1d290888d9069be3db9f4330d284 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
10 lines
363 B
Makefile
10 lines
363 B
Makefile
HOSTCFLAGS_gen_idt.o += -I$(srctree)/arch/x86/include -I$(srctree)/include/arch/x86
|
|
HOSTCFLAGS_gen_idt.o += -DKERNEL_VERSION=0 -Wall -Werror -g -m32
|
|
HOSTCFLAGS_version.o += -DKERNEL_VERSION=0 -Wall -Werror -g -m32
|
|
HOSTCFLAGS_gen_idt.o += -Wno-unused-result
|
|
HOSTLDFLAGS := -m32
|
|
|
|
hostprogs-y += gen_idt
|
|
gen_idt-objs := version.o gen_idt.o
|
|
always := $(hostprogs-y)
|