xref: /haiku/src/add-ons/kernel/file_systems/ramfs/Jamfile (revision 950900a9e8dc623b5cacfae434a06610b2bcfa56)
1SubDir HAIKU_TOP src add-ons kernel file_systems ramfs ;
2
3UsePrivateKernelHeaders ;
4UsePrivateHeaders file_systems storage ;
5UseHeaders [ FDirName $(HAIKU_TOP) src add-ons kernel drivers disk virtual ram_disk ] ;
6UseHeaders [ FDirName $(HAIKU_TOP) src system kernel vm ] ;
7UseHeaders [ FDirName $(HAIKU_TOP) src system kernel cache ] ;
8
9DEFINES += DEBUG_APP="\\\"ramfs\\\"" ;
10
11KernelAddon ramfs
12	:
13	AllocationInfo.cpp
14	Attribute.cpp
15	AttributeIndex.cpp
16	AttributeIndexImpl.cpp
17	AttributeIterator.cpp
18	DataContainer.cpp
19	Directory.cpp
20	Entry.cpp
21	EntryIterator.cpp
22	EntryListener.cpp
23	File.cpp
24	Index.cpp
25	IndexDirectory.cpp
26	kernel_interface.cpp
27	LastModifiedIndex.cpp
28	NameIndex.cpp
29	Node.cpp
30	NodeListener.cpp
31	NodeTable.cpp
32	Query.cpp
33	SizeIndex.cpp
34	SymLink.cpp
35	Volume.cpp
36
37	DebugSupport.cpp
38	QueryParserUtils.cpp
39;
40
41SEARCH on [ FGristFiles DebugSupport.cpp QueryParserUtils.cpp ]
42	+= [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems shared ] ;
43