genode/repos/libports/lib/mk/x86emu.mk
Johannes Schlatow 5e4e634625 libs: use select_from_ports in eager assignments
If `select_from_ports` is evaluated lazily, we might miss a port during
the dependency check. A way to prevent this is to use the `:=` operator.

Fixes genodelabs/genode#4618
2022-11-17 08:00:34 +01:00

14 lines
324 B
Makefile

#
# x86 real-mode emulation library
#
X86EMU_DIR := $(call select_from_ports,x86emu)/src/lib/x86emu/contrib
INC_DIR += $(X86EMU_DIR) $(REP_DIR)/include/x86emu
CC_OPT += -fomit-frame-pointer -Wno-maybe-uninitialized
SRC_C = decode.c fpu.c ops.c ops2.c prim_ops.c sys.c
vpath %.c $(X86EMU_DIR)
CC_CXX_WARN_STRICT =