xref: /haiku/src/system/libroot/posix/stdlib/Jamfile (revision 21258e2674226d6aa732321b6f8494841895af5f)
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