xref: /haiku/src/tests/add-ons/kernel/file_systems/userlandfs/reiserfs/Jamfile (revision 0c93c0a807b27096abbfad677436afb7d1712d4a)
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	: # relpath - obsolete
18	:
19	Debug.cpp
20	Locker.cpp
21	String.cpp
22
23	Block.cpp
24	BlockCache.cpp
25	hashes.cpp
26	Item.cpp
27	Iterators.cpp
28	kernel_interface.cpp
29	Settings.cpp
30	SuperBlock.cpp
31	Tree.cpp
32	VNode.cpp
33	Volume.cpp
34
35	: false		# is executable
36	: libuserlandfs_haiku_kernel.so
37;
38
39HaikuSubInclude beos_interface ;
40