⛏️ index : haiku.git

SubDir HAIKU_TOP src add-ons kernel generic bios ;

# Don't want to compile all of the debugging code even when doing a debug build,
# it's unnecessary unless you're trying to debug x86emu itself.
DEBUG = 0 ;

UseHeaders [ LibraryHeaders x86emu ] ;
UsePrivateKernelHeaders ;

SEARCH_SOURCE += [ FDirName $(SUBDIR) x86emu ] ;

local x86emuSources =
	decode.c
	fpu.c
	ops.c
	ops2.c
	prim_ops.c
	sys.c
;

KernelAddon bios :
	$(x86emuSources)
	bios.cpp
;

SEARCH on [ FGristFiles $(x86emuSources) ]
	= [ FDirName $(HAIKU_TOP) src libs x86emu ] ;