xref: /haiku/src/add-ons/kernel/file_systems/reiserfs/Jamfile (revision 56eb8e78cc702792e3b032e3f5f45da9e5dbea9e)
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
7SubDirHdrs [ FDirName $(userlandFSIncludes) shared ] ;
8
9SEARCH_SOURCE += [ FDirName $(userlandFSTop) shared ] ;
10
11DEFINES += DEBUG_APP="\\\"reiserfs\\\"" ;
12
13KernelAddon reiserfs
14	:
15	Debug.cpp
16	Locker.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	: $(HAIKU_LIBSUPC++)
32;
33