xref: /haiku/src/kits/debug/Jamfile (revision 981f1b1135291a4fca290fbdf69910dc2f24abdd)
1SubDir HAIKU_TOP src kits debug ;
2
3UsePrivateHeaders debug ;
4UsePrivateHeaders kernel ;
5	# for <util/DoublyLinkedList.h>
6UsePrivateHeaders runtime_loader ;
7UsePrivateHeaders shared ;
8UsePrivateSystemHeaders ;
9SubDirHdrs [ FDirName $(SUBDIR) arch ] ;
10
11SEARCH_SOURCE += [ FDirName $(SUBDIR) arch $(TARGET_ARCH) ] ;
12
13SharedLibrary libdebug.so :
14	debug_support.cpp
15	DebugEventStream.cpp
16	Image.cpp
17	SymbolLookup.cpp
18
19	# architecture specific
20	arch_debug_support.cpp
21
22	: be $(TARGET_LIBSUPC++)
23;
24