Assorted whitespace cleanup and typo fixes.
[haiku.git] / src / system / libroot / posix / malloc_debug / Jamfile
blob0a2213d12fe68fd1f4fb8e09138747fd1a56c902
1 SubDir HAIKU_TOP src system libroot posix malloc_debug ;
3 UsePrivateHeaders libroot shared runtime_loader ;
5 local architectureObject ;
6 for architectureObject in [ MultiArchSubDirSetup ] {
7         on $(architectureObject) {
8                 local architecture = $(TARGET_PACKAGING_ARCH) ;
10                 if $(architecture) != x86_gcc2 {
11                         SubDirC++Flags -std=gnu++11 ;
12                 }
14                 UsePrivateSystemHeaders ;
16                 MergeObject <$(architecture)>posix_malloc_debug.o :
17                         heap.cpp
18                         guarded_heap.cpp
20                         malloc_debug_api.cpp
21                         ;
22         }