diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2024-11-14 18:25:50 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2024-11-16 01:05:06 +0000 |
commit | 63798670e12fb9b2575f67e90d0a0c82b60becba (patch) | |
tree | 852af727f452c003470f1d6d9e193bb7ed3c7686 | |
parent | 4f9af8e4d123d222fa5f83ad0581ca2fe96e7269 (diff) | |
download | gcc-63798670e12fb9b2575f67e90d0a0c82b60becba.zip gcc-63798670e12fb9b2575f67e90d0a0c82b60becba.tar.gz gcc-63798670e12fb9b2575f67e90d0a0c82b60becba.tar.bz2 |
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.
-rw-r--r-- | libstdc++-v3/Makefile.am | 4 | ||||
-rw-r--r-- | libstdc++-v3/Makefile.in | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/Makefile.am b/libstdc++-v3/Makefile.am index 823e43d..bb40272 100644 --- a/libstdc++-v3/Makefile.am +++ b/libstdc++-v3/Makefile.am @@ -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 diff --git a/libstdc++-v3/Makefile.in b/libstdc++-v3/Makefile.in index cf8dd8b..5beb314 100644 --- a/libstdc++-v3/Makefile.in +++ b/libstdc++-v3/Makefile.in @@ -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. # |