mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
libstdc++: Use -C option to run recursive make in sub-directories
libstdc++-v3/ChangeLog: * Makefile.am: Use $(MAKE) -C dir instead of cd dir && $(MAKE). * Makefile.in: Regenerate.
This commit is contained in:
committed by
Jonathan Wakely
parent
4f9af8e4d1
commit
63798670e1
@@ -34,11 +34,11 @@ ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
|
||||
# Testsuite/check forwarding targets.
|
||||
check-%:
|
||||
cd testsuite && $(MAKE) $@
|
||||
$(MAKE) -C testsuite $@
|
||||
|
||||
# Documentation forwarding targets.
|
||||
doc-%:
|
||||
cd doc && $(MAKE) $@
|
||||
$(MAKE) -C doc $@
|
||||
|
||||
# Documentation conditionals for output.
|
||||
if BUILD_XML
|
||||
|
||||
@@ -778,11 +778,11 @@ uninstall-am:
|
||||
|
||||
# Testsuite/check forwarding targets.
|
||||
check-%:
|
||||
cd testsuite && $(MAKE) $@
|
||||
$(MAKE) -C testsuite $@
|
||||
|
||||
# Documentation forwarding targets.
|
||||
doc-%:
|
||||
cd doc && $(MAKE) $@
|
||||
$(MAKE) -C doc $@
|
||||
|
||||
# Documentation primary rules.
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user