1SubDir HAIKU_TOP src apps text_search ; 2 3SetSubDirSupportedPlatformsBeOSCompatible ; 4 5UsePrivateHeaders shared ; 6UsePrivateHeaders storage ; 7 8local additionalBeOSSources ; 9if $(TARGET_PLATFORM) != haiku { 10 SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src kits storage ] ; 11 additionalBeOSSources += PathMonitor.cpp ; 12} 13 14Application TextSearch : 15 ChangesIterator.cpp 16 FileIterator.cpp 17 InitialIterator.cpp 18 GrepApp.cpp 19 GrepListView.cpp 20 Grepper.cpp 21 GrepWindow.cpp 22 Model.cpp 23 TextSearch.cpp 24 25 $(additionalBeOSSources) 26 27 : be $(HAIKU_LOCALE_LIBS) tracker textencoding libshared.a 28 $(TARGET_LIBSUPC++) 29 : TextSearch.rdef 30; 31 32DoCatalogs TextSearch : 33 x-vnd.Haiku.TextSearch 34 : 35 GrepWindow.cpp 36 Grepper.cpp 37; 38