1SubDir HAIKU_TOP src add-ons kernel generic bios ;
2
3# Don't want to compile all of the debugging code even when doing a debug build,
4# it's unnecessary unless you're trying to debug x86emu itself.
5DEBUG = 0 ;
6
7UseHeaders [ LibraryHeaders x86emu ] ;
8UsePrivateKernelHeaders ;
9
10SEARCH_SOURCE += [ FDirName $(SUBDIR) x86emu ] ;
11
12local x86emuSources =
13	decode.c
14	fpu.c
15	ops.c
16	ops2.c
17	prim_ops.c
18	sys.c
19;
20
21KernelAddon bios :
22	$(x86emuSources)
23	bios.cpp
24;
25
26SEARCH on [ FGristFiles $(x86emuSources) ]
27	= [ FDirName $(HAIKU_TOP) src libs x86emu ] ;
28