Skip to content

Commit

Permalink
Improve Makefiles.
Browse files Browse the repository at this point in the history
Patch provided by Tomoaki Sato.
  • Loading branch information
pengbo0328 committed Jan 8, 2018
1 parent 028d261 commit e9bbe22
Show file tree
Hide file tree
Showing 25 changed files with 278 additions and 1,277 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = -I m4

docs:
$(MAKE) -C doc doc.ja all
$(MAKE) -C doc all && $(MAKE) -C doc.ja all
.PHONY: docs

SUBDIRS = src
Expand Down
16 changes: 7 additions & 9 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
depcomp =
am__depfiles_maybe =
SOURCES =
DIST_SOURCES =
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
Expand Down Expand Up @@ -218,14 +220,12 @@ AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CATALOG = @CATALOG@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
COLLATEINDEX = @COLLATEINDEX@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DOCBOOKSTYLE = @DOCBOOKSTYLE@
DSYMUTIL = @DSYMUTIL@
Expand Down Expand Up @@ -302,9 +302,7 @@ abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
Expand Down Expand Up @@ -366,15 +364,15 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu Makefile
$(AUTOMAKE) --foreign --ignore-deps Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
Expand Down Expand Up @@ -826,7 +824,7 @@ uninstall-am:


docs:
$(MAKE) -C doc doc.ja all
$(MAKE) -C doc all && $(MAKE) -C doc.ja all
.PHONY: docs

# Tell versions [3.59,3.63) of GNU make to not export all variables.
Expand Down
Loading

0 comments on commit e9bbe22

Please sign in to comment.