mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 06:33:31 +00:00
b355897f53
+ document x86emu move from os -> libports Fixes #456
13 lines
278 B
Makefile
13 lines
278 B
Makefile
#
|
|
# x86 real-mode emulation library
|
|
#
|
|
|
|
X86EMU = x86emu-1.12.0
|
|
X86EMU_DIR = $(REP_DIR)/contrib/$(X86EMU)
|
|
INC_DIR += $(X86EMU_DIR) $(REP_DIR)/include/x86emu
|
|
CC_OPT += -fomit-frame-pointer
|
|
|
|
SRC_C = decode.c fpu.c ops.c ops2.c prim_ops.c sys.c
|
|
|
|
vpath %.c $(X86EMU_DIR)
|