xref: /haiku/src/tests/add-ons/kernel/file_systems/userlandfs/reiserfs/Jamfile (revision b8a45b3a2df2379b4301bf3bd5949b9a105be4ba)
1SubDir HAIKU_TOP src tests add-ons kernel file_systems userlandfs reiserfs ;
2
3local userlandFSTop = [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems
4	userlandfs ] ;
5local userlandFSIncludes = [ PrivateHeaders userlandfs ] ;
6local reiserFSTop = [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems
7	reiserfs ] ;
8
9DEFINES += USER=1 ;
10
11SubDirHdrs [ FDirName $(userlandFSIncludes) shared ] ;
12
13SEARCH_SOURCE += $(reiserFSTop) ;
14SEARCH_SOURCE += [ FDirName $(userlandFSTop) shared ] ;
15
16Addon <userland>reiserfs
17	:
18	Debug.cpp
19	String.cpp
20
21	Block.cpp
22	BlockCache.cpp
23	hashes.cpp
24	Item.cpp
25	Iterators.cpp
26	kernel_interface.cpp
27	Settings.cpp
28	SuperBlock.cpp
29	Tree.cpp
30	VNode.cpp
31	Volume.cpp
32
33	: libuserlandfs_haiku_kernel.so
34	  be	# for BLocker only
35	  [ TargetLibsupc++ ]
36;
37