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