xref: /haiku/src/add-ons/kernel/file_systems/ramfs/Jamfile (revision eea5774f46bba925156498abf9cb1a1165647bf7)
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 ] ;
6
7DEFINES += DEBUG_APP="\\\"ramfs\\\"" ;
8
9KernelAddon ramfs
10	:
11	AllocationInfo.cpp
12	Attribute.cpp
13	AttributeIndex.cpp
14	AttributeIndexImpl.cpp
15	AttributeIterator.cpp
16	DataContainer.cpp
17	Directory.cpp
18	Entry.cpp
19	EntryIterator.cpp
20	EntryListener.cpp
21	File.cpp
22	Index.cpp
23	IndexDirectory.cpp
24	kernel_interface.cpp
25	LastModifiedIndex.cpp
26	NameIndex.cpp
27	Node.cpp
28	NodeListener.cpp
29	NodeTable.cpp
30	Query.cpp
31	SizeIndex.cpp
32	SymLink.cpp
33	Volume.cpp
34
35	DebugSupport.cpp
36	QueryParserUtils.cpp
37;
38
39SEARCH on [ FGristFiles DebugSupport.cpp QueryParserUtils.cpp ]
40	+= [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems shared ] ;
41