xref: /haiku/src/system/libroot/posix/stdlib/Jamfile (revision 445d4fd926c569e7b9ae28017da86280aaecbae2)
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		ObjectSysHdrs strfmon.c :
13			[ FDirName $(HAIKU_TOP) headers compatibility bsd ] ;
14
15		MergeObject <$(architecture)>posix_stdlib.o :
16			abs.c
17			atfork.c
18			atof.c
19			atoi.c
20			bsearch.c
21			div.c
22			env.cpp
23			exit.cpp
24			heapsort.c
25			merge.c
26			mktemp.c
27			pty.cpp
28			qsort.c
29			radixsort.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