xref: /haiku/src/system/kernel/arch/x86/Jamfile (revision cfc3fa87da824bdf593eb8b817a83b6376e77935)
1SubDir HAIKU_TOP src system kernel arch x86 ;
2
3SubDirHdrs [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) system kernel ] ;
4	# for syscall_numbers.h
5SubDirHdrs $(HAIKU_TOP) src add-ons kernel bus_managers ps2 ;
6SubDirHdrs $(SUBDIR) $(DOTDOT) generic ;
7
8UsePrivateHeaders kernel [ FDirName kernel arch $(TARGET_ARCH) ]
9	[ FDirName kernel boot platform $(HAIKU_BOOT_PLATFORM) ] ;
10
11SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;
12
13KernelStaticLibrary libx86 :
14	arch_commpage.cpp
15	arch_cpu.c
16	arch_debug.cpp
17	arch_debug_console.c
18	arch_elf.c
19	arch_int.c
20	arch_platform.c
21#	arch_selector.c
22	arch_real_time_clock.c
23	arch_smp.c
24	arch_string.S
25	arch_thread.cpp
26	arch_timer.c
27	arch_vm.cpp
28	arch_vm_translation_map.cpp
29	arch_x86.S
30	arch_interrupts.S
31	arch_system_info.c
32	arch_user_debugger.cpp
33	apm.cpp
34	bios.cpp
35	cpuid.S
36	syscall.S
37
38	generic_vm_physical_page_mapper.cpp
39	:
40	$(TARGET_KERNEL_PIC_CCFLAGS) -Wno-unused
41;
42
43CreateAsmStructOffsetsHeader asm_offsets.h : asm_offsets.cpp ;
44
45# We need to specify the dependency on the generated syscalls file explicitly.
46Includes [ FGristFiles arch_x86.S arch_interrupts.S ]
47	: <syscalls>syscall_numbers.h ;
48Includes [ FGristFiles arch_interrupts.S ]
49	: <syscalls>syscall_table.h ;
50