1SubDir HAIKU_TOP src system libroot posix locale ; 2 3UsePrivateHeaders 4 [ FDirName libroot ] 5 [ FDirName libroot locale ] 6 [ FDirName libroot time ] 7 [ FDirName system ] 8 ; 9 10local architectureObject ; 11for architectureObject in [ MultiArchSubDirSetup ] { 12 on $(architectureObject) { 13 local architecture = $(TARGET_PACKAGING_ARCH) ; 14 15 MergeObject <$(architecture)>posix_locale.o : 16 ctype_l.cpp 17 ctype.cpp 18 LocaleBackend.cpp 19 LocaleData.cpp 20 LocaleDataBridge.cpp 21 LocaleInternal.cpp 22 locale_t.cpp 23 localeconv.cpp 24 nl_langinfo.cpp 25 setlocale.cpp 26 ThreadLocale.cpp 27 wctype_l.cpp 28 wctype.cpp 29 ; 30 31 MergeObject <$(architecture)>ctype_loc.o : 32 ctype_loc.cpp 33 ; 34 } 35} 36