diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-20 04:13:50 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-20 04:13:50 +0000 |
commit | 66c4386e4c27657eceb722e2fd79b7911d48a7f2 (patch) | |
tree | 77461ee56cfd65c3216290ea560781549a6d253f /Makefile.in | |
parent | 2d14b1f01949e05189b17dac281a1c0d5ec7467d (diff) | |
download | gcc-66c4386e4c27657eceb722e2fd79b7911d48a7f2.tar.gz |
2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
* Makefile.in (check-c++): New rule.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39915 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index cf3aa7b87ea..86497d133e1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1498,6 +1498,18 @@ check-gcc: true; \ fi +.PHONY: check-c++ +check-c++: + @if [ -f ./gcc/Makefile ] ; then \ + r=`pwd`; export r; \ + s=`cd $(srcdir); pwd`; export s; \ + $(SET_LIB_PATH) \ + (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++); \ + $(MAKE) check-target-libstdc++-v3 \ + else \ + true; \ + fi + .PHONY: install-gcc install-gcc: @if [ -f ./gcc/Makefile ] ; then \ |