xref: /haiku/src/system/libroot/os/arch/x86/Jamfile (revision 204dee708a999d5a71d0cb9497650ee7cef85d0a)
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.cpp
23	tls.c
24
25	$(compatibilitySources)
26;
27