1SubDir HAIKU_TOP src apps debuganalyzer ; 2 3UsePrivateHeaders debug interface kernel shared ; 4UsePrivateSystemHeaders ; 5 6HAIKU_DEBUG_ANALYZER_HEADERS = 7 $(SUBDIR) 8 [ FDirName $(SUBDIR) gui ] 9 [ FDirName $(SUBDIR) model ] 10 [ FDirName $(SUBDIR) model_loader ] 11 [ FDirName $(SUBDIR) util ] 12; 13 14UseHeaders $(HAIKU_DEBUG_ANALYZER_HEADERS) ; 15 16 17Application DebugAnalyzer 18 : 19 DebugAnalyzer.cpp 20 21 : 22 <nogrist>DebugAnalyzer_gui.o 23 <nogrist>DebugAnalyzer_model.o 24 <nogrist>DebugAnalyzer_model_loader.o 25 <nogrist>DebugAnalyzer_util.o 26 27 libcolumnlistview.a libshared.a libdebug.so be 28 $(TARGET_LIBSTDC++) 29 : 30 DebugAnalyzer.rdef 31; 32 33HaikuSubInclude gui ; 34HaikuSubInclude model ; 35HaikuSubInclude model_loader ; 36HaikuSubInclude util ; 37