xref: /haiku/src/system/libroot/posix/malloc/debug/Jamfile (revision fc7456e9b1ec38c941134ed6d01c438cf289381e)
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