1SubDir HAIKU_TOP src tests add-ons kernel file_systems iso9660 iso9660_shell ; 2 3SubDirHdrs $(HAIKU_TOP) src add-ons kernel file_systems iso9660 ; 4SubDirHdrs $(HAIKU_TOP) src tests add-ons kernel file_systems fs_shell ; 5 6{ 7 local defines = [ FDefines USER DEBUG ] ; # _NO_INLINE_ASM 8 SubDirCcFlags $(defines) -fno-exceptions -fno-rtti ; #-fcheck-memory-usage 9} 10 11local fsShellSources = 12 fsh.c rootfs.c initfs.c kernel.c cache.c external_commands.cpp sl.c 13 stub.c tracker.cpp sysdep.c hexdump.c argv.c 14; 15 16SimpleTest iso9660_shell 17 : 18 $(fsShellSources) 19 20 iso.c kernel_interface.c 21 : 22 ; 23 24# Tell Jam where to find these sources 25SEARCH on [ FGristFiles 26 iso.c kernel_interface.c 27 ] = [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems iso9660 ] ; 28 29SEARCH on [ FGristFiles 30 $(fsShellSources) 31 ] = [ FDirName $(HAIKU_TOP) src tests add-ons kernel file_systems fs_shell ] ; 32