1SubDir HAIKU_TOP src tests add-ons kernel file_systems xfs xfs_shell ; 2 3SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems xfs ] ; 4 5# prevent inclusion of HaikuBuildCompatibility.h and _BSD_SOURCE headers 6DEFINES += HAIKU_BUILD_COMPATIBILITY_H __STRICT_ANSI__ ; 7 8# set some additional defines 9{ 10 local defines = 11 FS_SHELL 12 ; 13 14 defines = [ FDefines $(defines) ] ; 15 16 local c++flags = ; 17 18 SubDirCcFlags $(defines) -Wno-multichar ; 19 SubDirC++Flags $(defines) $(c++flags) -Wno-multichar -fno-rtti ; 20} 21 22# platform specific libraries 23local fsShellCommandLibs ; 24if ! $(HOST_PLATFORM_HAIKU_COMPATIBLE) { 25 fsShellCommandLibs = $(HOST_NETWORK_LIBS) ; 26} 27 28UseHeaders [ FDirName $(HAIKU_TOP) headers build ] : true ; 29 30if ! $(HOST_PLATFORM_HAIKU_COMPATIBLE) { 31 UseHeaders [ FDirName $(HAIKU_TOP) headers build os ] : true ; 32 UseHeaders [ FDirName $(HAIKU_TOP) headers build os support ] : true ; 33} 34 35UsePrivateHeaders shared storage ; 36UsePrivateHeaders fs_shell ; 37UsePrivateHeaders file_systems ; 38UseHeaders [ FDirName $(HAIKU_TOP) headers private ] : true ; 39UseHeaders [ FDirName $(HAIKU_TOP) src tools fs_shell ] ; 40 41local xfsSource = 42 DeviceOpener.cpp 43 Directory.cpp 44 Extent.cpp 45 Inode.cpp 46 kernel_interface.cpp 47 ShortDirectory.cpp 48 Volume.cpp 49 xfs.cpp 50; 51 52BuildPlatformMergeObject <build>xfs_shell.o : $(xfsSource) ; 53 54BuildPlatformMain <build>xfs_shell 55 : 56 : 57 <build>xfs_shell.o 58 <build>fs_shell.a $(HOST_LIBSUPC++) $(HOST_LIBSTDC++) 59 $(HOST_LIBROOT) $(fsShellCommandLibs) 60; 61 62BuildPlatformMain <build>xfs_fuse 63 : 64 : 65 <build>xfs_shell.o 66 <build>fuse_module.a 67 $(HOST_LIBSUPC++) $(HOST_LIBSTDC++) 68 $(HOST_STATIC_LIBROOT) $(fsShellCommandLibs) fuse 69; 70 71SEARCH on [ FGristFiles QueryParserUtils.cpp ] 72 += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems shared ] ; 73 74SEARCH on [ FGristFiles DeviceOpener.cpp ] 75 += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems shared ] ; 76