1SubDir HAIKU_TOP src add-ons kernel file_systems ramfs ;
2
3local userlandFSTop = [ FDirName $(HAIKU_TOP) src add-ons kernel
4	file_systems userlandfs ] ;
5local userlandFSIncludes = [ PrivateHeaders userlandfs ] ;
6
7UsePrivateHeaders kernel shared ;
8
9SubDirHdrs [ FDirName $(userlandFSIncludes) shared ] ;
10
11SEARCH_SOURCE += [ FDirName $(userlandFSTop) shared ] ;
12
13DEFINES += DEBUG_APP="\\\"ramfs\\\"" ;
14
15KernelAddon ramfs
16	: Debug.cpp
17	  String.cpp
18
19	  AllocationInfo.cpp
20	  AreaUtils.cpp
21	  Attribute.cpp
22	  AttributeIndex.cpp
23	  AttributeIndexImpl.cpp
24	  AttributeIterator.cpp
25	  BlockAllocator.cpp
26	  BlockAllocatorArea.cpp
27	  BlockAllocatorAreaBucket.cpp
28	  BlockReferenceManager.cpp
29	  DataContainer.cpp
30	  Directory.cpp
31	  Entry.cpp
32	  EntryIterator.cpp
33	  EntryListener.cpp
34	  File.cpp
35	  Index.cpp
36	  IndexDirectory.cpp
37	  kernel_interface.cpp
38	  LastModifiedIndex.cpp
39	  NameIndex.cpp
40	  Node.cpp
41	  NodeListener.cpp
42	  NodeTable.cpp
43	  Query.cpp
44	  SizeIndex.cpp
45	  SymLink.cpp
46	  Volume.cpp
47
48	: $(HAIKU_KERNEL_LIBSUPC++)
49;
50