1SubDir HAIKU_TOP src system libroot posix crypt ; 2 3local architectureObject ; 4for architectureObject in [ MultiArchSubDirSetup ] { 5 on $(architectureObject) { 6 local architecture = $(TARGET_PACKAGING_ARCH) ; 7 8 # filter warnings we don't want here 9 TARGET_WARNING_CCFLAGS_$(architecture) 10 = [ FFilter $(TARGET_WARNING_CCFLAGS_$(architecture)) 11 : -Wall -Wmissing-prototypes -Wsign-compare ] ; 12 13 MergeObject <$(architecture)>posix_crypt.o : 14 crypt.c 15 crypt_util.c 16 ; 17 } 18} 19