* Makefile.in: Properly cd to directory sans install_ prefix. Report on errors
on doc install. Only 'all' is special.
This commit is contained in:
parent
2a6d6db8e2
commit
13dbf6b0aa
|
@ -1,3 +1,8 @@
|
||||||
|
2013-11-06 Christopher Faylor <me.cygwin2013@cgf.cx>
|
||||||
|
|
||||||
|
* Makefile.in: Properly cd to directory sans install_ prefix. Report
|
||||||
|
on errors on doc install. Only 'all' is special.
|
||||||
|
|
||||||
2013-11-06 Christopher Faylor <me.cygwin2013@cgf.cx>
|
2013-11-06 Christopher Faylor <me.cygwin2013@cgf.cx>
|
||||||
|
|
||||||
* configure.ac: Detect windows headers/libs after we've figured out the
|
* configure.ac: Detect windows headers/libs after we've figured out the
|
||||||
|
|
|
@ -79,13 +79,13 @@ install-info:
|
||||||
info:
|
info:
|
||||||
|
|
||||||
$(SUBDIRS):
|
$(SUBDIRS):
|
||||||
${MAKE} -C $@ all || ([ "$@" == doc ] && echo "*** error ignored")
|
@${MAKE} -C $@ all || ([ "$@" == doc ] && echo "*** error ignored")
|
||||||
|
|
||||||
$(INSTALL_SUBDIRS):
|
$(INSTALL_SUBDIRS):
|
||||||
${MAKE} -C $@ all || ([ "$@" == install_doc ] && echo "*** error ignored")
|
@${MAKE} -C $(patsubst install_%,%,$@) install
|
||||||
|
|
||||||
$(CLEAN_SUBDIRS):
|
$(CLEAN_SUBDIRS):
|
||||||
@if cd ${patsubst clean_%,%,$@} 2>/dev/null; then \
|
@if cd $(patsubst clean_%,%,$@) 2>/dev/null; then \
|
||||||
$(MAKE) clean || exit 1; \
|
$(MAKE) clean || exit 1; \
|
||||||
fi || exit 0
|
fi || exit 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue