xref: /haiku/src/system/libroot/posix/stdlib/Jamfile (revision 950809231f2f65e55f38e722fcfc82bdf4d0fe04)
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			rand.c
31			random.c
32			realpath.cpp
33			strfmon.c
34			strtol.c
35			strtoll.c
36			strtoul.c
37			strtoull.c
38			;
39	}
40}
41