xref: /haiku/src/system/libroot/posix/stdlib/Jamfile (revision 644fa5a93845dc4a1bc155f1fd0f94ebdf0b47bc)
1SubDir HAIKU_TOP src system libroot posix stdlib ;
2
3UsePrivateHeaders drivers libroot runtime_loader shared ;
4UsePrivateHeaders kernel ;	# for <util/*>
5
6local architectureObject ;
7for architectureObject in [ MultiArchSubDirSetup ] {
8	on $(architectureObject) {
9		local architecture = $(TARGET_PACKAGING_ARCH) ;
10
11		UsePrivateSystemHeaders ;
12
13		MergeObject <$(architecture)>posix_stdlib.o :
14			abs.c
15			atfork.c
16			atof.c
17			atoi.c
18			bsearch.c
19			div.c
20			env.cpp
21			exit.cpp
22			getsubopt.cpp
23			heapsort.c
24			merge.c
25			mktemp.c
26			pty.cpp
27			qsort.c
28			radixsort.c
29			rand.c
30			random.c
31			realpath.cpp
32			strfmon.c
33			strtol.c
34			strtoll.c
35			strtoul.c
36			strtoull.c
37			;
38	}
39}
40