1SubDir HAIKU_TOP src add-ons kernel file_systems btrfs ; 2 3UsePrivateHeaders [ FDirName kernel util ] ; 4UsePrivateHeaders shared storage file_systems ; 5UsePrivateKernelHeaders ; 6UseBuildFeatureHeaders zlib ; 7 8DEFINES += DEBUG_APP="\\\"btrfs\\\"" ; 9 10UseHeaders [ FDirName $(HAIKU_TOP) src libs uuid ] : true ; 11 12Includes [ FGristFiles Inode.cpp ] 13 : [ BuildFeatureAttribute zlib : headers ] ; 14 15KernelAddon btrfs : 16 btrfs_disk_system.cpp 17 kernel_interface.cpp 18 Attribute.cpp 19 AttributeIterator.cpp 20 BTree.cpp 21 Chunk.cpp 22 CRCTable.cpp 23 DebugSupport.cpp 24 DirectoryIterator.cpp 25 ExtentAllocator.cpp 26 Inode.cpp 27 Journal.cpp 28 Volume.cpp 29 : 30 kernel_libz.a 31 libuuid_kernel.a 32; 33 34SEARCH on [ FGristFiles DebugSupport.cpp ] 35 += [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems shared ] ; 36