From 26ae85a36d885d510c3af01b0e3dfe256b47a2ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 7 Nov 2016 18:43:13 +0100 Subject: [PATCH] Format poedit_SOURCES in Makefile.am sanely One file (or .h + .cpp file pair) per line, sorted. --- src/Makefile.am | 77 +++++++++++++++++++++++++++++-------------------- 1 file changed, 46 insertions(+), 31 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index f72353ea70..5fc1568ab7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -20,35 +20,50 @@ CROWDIN_SUPPORT_SRC = \ CROWDIN_SUPPORT_LIBS = $(CPPREST_LIBS) $(LIBSECRET_LIBS) endif -poedit_SOURCES = attentionbar.cpp attentionbar.h \ +poedit_SOURCES = \ + attentionbar.cpp attentionbar.h \ + cat_sorting.cpp cat_sorting.h \ + catalog.cpp catalog.h + chooselang.cpp chooselang.h \ + commentdlg.h commentdlg.cpp \ + concurrency.cpp concurrency.h \ + configuration.cpp configuration.h \ + customcontrols.cpp customcontrols.h \ + digger.h digger.cpp \ + edapp.cpp edapp.h \ + edframe.cpp edframe.h \ + edlistctrl.cpp edlistctrl.h \ errorbar.cpp errorbar.h \ - catalog.cpp catalog.h edapp.cpp edapp.h edframe.cpp \ - edframe.h fileviewer.cpp fileviewer.h extractor.cpp extractor.h \ + errors.h \ + export_html.cpp \ + extractor.cpp extractor.h \ + fileviewer.cpp fileviewer.h \ + findframe.cpp findframe.h \ + gexecute.h gexecute.cpp \ + hidpi.cpp hidpi.h \ + icons.h icons.cpp \ + language.cpp language.h \ + language_impl_legacy.h language_impl_plurals.h \ + languagectrl.cpp languagectrl.h \ + logcapture.h \ + main_toolbar.h wx/main_toolbar.cpp \ + manager.h manager.cpp \ + pluralforms/pl_evaluate.cpp pluralforms/pl_evaluate.h \ prefsdlg.cpp prefsdlg.h \ - propertiesdlg.cpp propertiesdlg.h progressinfo.h \ - progressinfo.cpp digger.h digger.cpp gexecute.h \ - gexecute.cpp summarydlg.h summarydlg.cpp \ + progressinfo.h progressinfo.cpp \ + propertiesdlg.cpp propertiesdlg.h \ + sidebar.cpp sidebar.h \ spellchecking.h spellchecking.cpp \ - findframe.cpp findframe.h commentdlg.h commentdlg.cpp \ - tm/suggestions.cpp tm/suggestions.h tm/transmem.cpp tm/transmem.h \ - manager.h manager.cpp chooselang.cpp chooselang.h \ - export_html.cpp icons.h icons.cpp \ - pluralforms/pl_evaluate.cpp pluralforms/pl_evaluate.h \ - edlistctrl.cpp edlistctrl.h \ - cat_sorting.cpp cat_sorting.h \ - utility.cpp utility.h concurrency.cpp concurrency.h configuration.cpp configuration.h \ - version.h errors.h \ - str_helpers.h logcapture.h \ - unicode_helpers.h unicode_helpers.cpp \ - language.cpp language.h language_impl_legacy.h language_impl_plurals.h \ - languagectrl.cpp languagectrl.h \ - welcomescreen.cpp welcomescreen.h \ + str_helpers.h \ + summarydlg.h summarydlg.cpp \ syntaxhighlighter.cpp syntaxhighlighter.h \ - sidebar.cpp sidebar.h \ text_control.h text_control.cpp \ - customcontrols.cpp customcontrols.h \ - hidpi.cpp hidpi.h \ - main_toolbar.h wx/main_toolbar.cpp \ + tm/suggestions.cpp tm/suggestions.h \ + tm/transmem.cpp tm/transmem.h \ + unicode_helpers.h unicode_helpers.cpp \ + utility.cpp utility.h \ + version.h \ + welcomescreen.cpp welcomescreen.h \ $(CROWDIN_SUPPORT_SRC) \ $(WX_BACKPORT_SRC) nodist_poedit_SOURCES = compiled_xrc.cpp @@ -57,14 +72,14 @@ poedit_LDADD = $(WX_LIBS) $(LUCENE_LIBS) $(CLD2_LIBS) $(CROWDIN_SUPPORT_LIBS) \ $(BOOST_LDFLAGS) $(BOOST_THREAD_LIB) $(BOOST_REGEX_LIB) $(BOOST_SYSTEM_LIB) XRC_RESOURCES = \ - $(srcdir)/resources/menus.xrc \ - $(srcdir)/resources/prefs.xrc \ - $(srcdir)/resources/progress.xrc \ - $(srcdir)/resources/properties.xrc \ + $(srcdir)/resources/comment.xrc \ + $(srcdir)/resources/manager.xrc \ + $(srcdir)/resources/menus.xrc \ + $(srcdir)/resources/prefs.xrc \ + $(srcdir)/resources/progress.xrc \ + $(srcdir)/resources/properties.xrc \ $(srcdir)/resources/summary.xrc \ - $(srcdir)/resources/toolbar.xrc \ - $(srcdir)/resources/comment.xrc \ - $(srcdir)/resources/manager.xrc + $(srcdir)/resources/toolbar.xrc compiled_xrc.cpp: $(XRC_RESOURCES) $(WXRC) -v -c -o $@ $(XRC_RESOURCES)