Skip to content

Commit

Permalink
Makefile.am: Make every list item in individual line
Browse files Browse the repository at this point in the history
It makes version controlling easier

Signed-off-by: 林博仁 <[email protected]>
  • Loading branch information
brlin-tw committed Aug 2, 2017
1 parent 59de8fb commit 50634b5
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 9 deletions.
5 changes: 4 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@

SUBDIRS = src innoSetup debian
SUBDIRS = \
src\
innoSetup\
debian

# M4

Expand Down
39 changes: 31 additions & 8 deletions src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
SUBDIRS = data locale win32 linux-menu
SUBDIRS = \
data\
locale\
win32\
linux-menu

bin_PROGRAMS=woeusbgui

Expand All @@ -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


Expand All @@ -30,12 +47,18 @@ 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:
## Install Dlls
"$(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

0 comments on commit 50634b5

Please sign in to comment.