xref: /haiku/src/add-ons/kernel/file_systems/reiserfs/Jamfile (revision 1acbe440b8dd798953bec31d18ee589aa3f71b73)
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	: $(TARGET_GCC_LIBGCC) $(HAIKU_LIBSUPC++)
32;
33