diff options
author | Matt Kraai <kraai@alumni.cmu.edu> | 2003-08-02 00:48:19 +0000 |
---|---|---|
committer | Matt Kraai <kraai@gcc.gnu.org> | 2003-08-02 00:48:19 +0000 |
commit | 333a28b448276eaf433d7b05c84182355bd647e1 (patch) | |
tree | 51e65e8fb42c9163f09f710d9fc4d8c695997595 /Makefile.tpl | |
parent | 5292fe613466f3792b1cf4c8a956c089b5b417e3 (diff) | |
download | gcc-333a28b448276eaf433d7b05c84182355bd647e1.zip gcc-333a28b448276eaf433d7b05c84182355bd647e1.tar.gz gcc-333a28b448276eaf433d7b05c84182355bd647e1.tar.bz2 |
Makefile.tpl (check, check-c++): Express dependencies using dependencies rather than commands.
* Makefile.tpl (check, check-c++): Express dependencies using
dependencies rather than commands.
* Makefile.in: Regenerate.
From-SVN: r70092
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 64765f2..8ec6551 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -665,8 +665,7 @@ clean-target-libgcc: # Check target. .PHONY: check do-check -check: - $(MAKE) do-check +check: do-check # Only include modules actually being configured and built. do-check: maybe-check-gcc [+ @@ -1229,8 +1228,7 @@ check-gcc-c++: fi .PHONY: check-c++ -check-c++: - $(MAKE) check-target-libstdc++-v3 check-gcc-c++ +check-c++: check-target-libstdc++-v3 check-gcc-c++ .PHONY: install-gcc maybe-install-gcc maybe-install-gcc: |