1SubDir HAIKU_TOP src tests add-ons kernel file_systems ufs2 ufs2_shell ; 2 3SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems ufs2 ] ; 4 5# prevent inclusion of HaikuBuildCompatibility.h 6DEFINES += HAIKU_BUILD_COMPATIBILITY_H ; 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 ; 37UseHeaders [ FDirName $(HAIKU_TOP) headers private ] : true ; 38UseHeaders [ FDirName $(HAIKU_TOP) src tools fs_shell ] ; 39 40local ufs2Source = 41 Volume.cpp 42 kernel_interface.cpp 43; 44 45BuildPlatformMergeObject <build>ufs2.o : $(ufs2Source) ; 46 47BuildPlatformMain <build>ufs2_shell 48 : 49 : 50 <build>ufs2.o 51 <build>fs_shell.a $(HOST_LIBSUPC++) $(HOST_LIBSTDC++) 52 $(HOST_LIBROOT) $(fsShellCommandLibs) 53; 54 55BuildPlatformMain <build>ufs2_fuse 56 : 57 : 58 <build>ufs2.o 59 <build>fuse_module.a 60 $(HOST_LIBSUPC++) $(HOST_LIBSTDC++) 61 $(HOST_STATIC_LIBROOT) $(fsShellCommandLibs) fuse 62; 63 64SEARCH on [ FGristFiles QueryParserUtils.cpp ] 65 += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems shared ] ; 66