xref: /haiku/src/system/libroot/posix/malloc/debug/Jamfile (revision 9a6a20d4689307142a7ed26a1437ba47e244e73f)
1SubDir HAIKU_TOP src system libroot posix malloc debug ;
2
3UsePrivateHeaders libroot shared runtime_loader ;
4
5local architectureObject ;
6for architectureObject in [ MultiArchSubDirSetup ] {
7	on $(architectureObject) {
8		local architecture = $(TARGET_PACKAGING_ARCH) ;
9
10		UsePrivateSystemHeaders ;
11
12		MergeObject <$(architecture)>posix_malloc_debug.o :
13			heap.cpp
14			guarded_heap.cpp
15
16			malloc_debug_api.cpp
17			;
18	}
19}
20