xref: /haiku/src/add-ons/kernel/file_systems/ramfs/Jamfile (revision d63ed5844d997a61afd7a6c4b7c9fad0dc01e9f3)
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 shared ;
8UsePrivateKernelHeaders ;
9
10SubDirHdrs [ FDirName $(userlandFSIncludes) shared ] ;
11
12SEARCH_SOURCE += [ FDirName $(userlandFSTop) shared ] ;
13
14DEFINES += DEBUG_APP="\\\"ramfs\\\"" ;
15
16KernelAddon ramfs
17	: Debug.cpp
18	  String.cpp
19
20	  AllocationInfo.cpp
21	  AreaUtils.cpp
22	  Attribute.cpp
23	  AttributeIndex.cpp
24	  AttributeIndexImpl.cpp
25	  AttributeIterator.cpp
26	  BlockAllocator.cpp
27	  BlockAllocatorArea.cpp
28	  BlockAllocatorAreaBucket.cpp
29	  BlockReferenceManager.cpp
30	  DataContainer.cpp
31	  Directory.cpp
32	  Entry.cpp
33	  EntryIterator.cpp
34	  EntryListener.cpp
35	  File.cpp
36	  Index.cpp
37	  IndexDirectory.cpp
38	  kernel_interface.cpp
39	  LastModifiedIndex.cpp
40	  NameIndex.cpp
41	  Node.cpp
42	  NodeListener.cpp
43	  NodeTable.cpp
44	  Query.cpp
45	  SizeIndex.cpp
46	  SymLink.cpp
47	  Volume.cpp
48;
49