From 50634b5dc7a8cd8e5b6fb8389949853d7287dfe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=8D=9A=E4=BB=81?= Date: Wed, 2 Aug 2017 19:02:52 +0800 Subject: [PATCH] Makefile.am: Make every list item in individual line MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It makes version controlling easier Signed-off-by: ๆž—ๅšไป --- Makefile.am | 5 ++++- src/Makefile.am | 39 +++++++++++++++++++++++++++++++-------- 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/Makefile.am b/Makefile.am index dacaac9..9046c6e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,8 @@ -SUBDIRS = src innoSetup debian +SUBDIRS = \ + src\ + innoSetup\ + debian # M4 diff --git a/src/Makefile.am b/src/Makefile.am index 880cc96..f7590b5 100755 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,8 @@ -SUBDIRS = data locale win32 linux-menu +SUBDIRS = \ + data\ + locale\ + win32\ + linux-menu bin_PROGRAMS=woeusbgui @@ -8,11 +12,24 @@ woeusbgui_LDFLAGS = $(EXTRA_LDFLAGS) woeusbgui_LDADD = $(LIBS_ALL) -woeusbguiSrcBase = AppConfig.hpp DialogAbout.hpp MainPanel.cpp \ - App.cpp findFile.cpp MainPanel.hpp processManager.hpp \ - App.hpp findFile.hpp MyException.cpp strWxStdConv.cpp \ - MainFrame.cpp MyException.hpp strWxStdConv.hpp \ - DialogAbout.cpp MainFrame.hpp nbStrConvert.hpp \ +woeusbguiSrcBase = \ + AppConfig.hpp\ + DialogAbout.hpp\ + MainPanel.cpp\ + App.cpp\ + findFile.cpp\ + MainPanel.hpp\ + processManager.hpp\ + App.hpp\ + findFile.hpp\ + MyException.cpp\ + strWxStdConv.cpp\ + MainFrame.cpp\ + MyException.hpp\ + strWxStdConv.hpp\ + DialogAbout.cpp\ + MainFrame.hpp\ + nbStrConvert.hpp\ processManager.cpp @@ -30,7 +47,9 @@ endif # Install my_script in $(bindir) and distribute it. dist_bin_SCRIPTS = woeusb -man_MANS = woeusbgui.1 woeusb.1 +man_MANS = \ + woeusbgui.1\ + woeusb.1 if IS_MINGW install-data-hook: @@ -38,4 +57,8 @@ install-data-hook: "$(srcdir)/installDll.sh" "$(prefix)" "$(host)" endif -EXTRA_DIST = $(srcdir)/*.cbp $(man_MANS) $(srcdir)/rc.rc $(srcdir)/installDll.sh +EXTRA_DIST = \ + $(srcdir)/*.cbp\ + $(man_MANS)\ + $(srcdir)/rc.rc\ + $(srcdir)/installDll.sh