1SubDir HAIKU_TOP src add-ons kernel file_systems reiserfs ;
2
3local userlandFSTop = [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems
4	userlandfs ] ;
5local userlandFSIncludes = [ PrivateHeaders userlandfs ] ;
6
7UsePrivateKernelHeaders ;
8SubDirHdrs [ FDirName $(userlandFSIncludes) shared ] ;
9
10SEARCH_SOURCE += [ FDirName $(userlandFSTop) shared ] ;
11
12DEFINES += DEBUG_APP="\\\"reiserfs\\\"" ;
13
14KernelAddon reiserfs
15	:
16	Debug.cpp
17	String.cpp
18
19	Block.cpp
20	BlockCache.cpp
21	hashes.cpp
22	Item.cpp
23	Iterators.cpp
24	kernel_interface.cpp
25	Settings.cpp
26	SuperBlock.cpp
27	Tree.cpp
28	VNode.cpp
29	Volume.cpp
30;
31