xref: /haiku/src/system/libroot/os/arch/x86/Jamfile (revision 508f54795f39c3e7552d87c95aae9dd8ec6f505b)
1SubDir HAIKU_TOP src system libroot os arch x86 ;
2
3UsePrivateKernelHeaders ;
4	# TODO: Replace by "UsePrivateHeaders libroot" after resolving the TODO in
5	# time.c!
6UsePrivateSystemHeaders ;
7
8local compatibilitySources ;
9if $(HAIKU_GCC_VERSION[1]) = 2 {
10	compatibilitySources =
11		compatibility.c
12	;
13}
14
15MergeObject os_arch_$(TARGET_ARCH).o :
16	atomic.S
17	byteorder.S
18	get_stack_frame.S
19	system_info.c
20	system_time_asm.S
21	thread.c
22	time.c
23	tls.c
24
25	$(compatibilitySources)
26;
27