1SubDir HAIKU_TOP src apps stylededit ; 2 3UsePrivateHeaders textencoding ; 4 5local styled_edit_rsrc = 6 [ FGristFiles StyledEdit.rsrc ] 7 ; 8ResComp $(styled_edit_rsrc) : 9 [ FGristFiles StyledEdit.rdef StyledEdit.icons.rdef StyledEdit.version.rdef ] 10 ; 11 12local styled_edit_files = 13 ColorMenuItem.cpp 14 FindWindow.cpp 15 ReplaceWindow.cpp 16 StyledEditApp.cpp 17 StyledEditView.cpp 18 StyledEditWindow.cpp 19 ; 20 21Objects $(styled_edit_files) ; 22 23Application StyledEdit : 24 [ FGristFiles $(styled_edit_files:S=$(SUFOBJ)) ] 25 # Haiku String 26 String.cpp 27 strcasestr.c 28 : be translation tracker libtextencoding.so 29 : $(styled_edit_rsrc) 30 ; 31 32SEARCH on <src!apps!stylededit>String.cpp += [ FDirName $(HAIKU_TOP) src kits support ] ; 33SEARCH on <src!apps!stylededit>strcasestr.c += [ FDirName $(HAIKU_TOP) src system libroot posix string ] ; 34 35