diff options
author | Jason Merrill <jason@redhat.com> | 2002-12-14 08:35:49 +0000 |
---|---|---|
committer | Jason Merrill <jason@redhat.com> | 2002-12-14 08:35:49 +0000 |
commit | 7d695d0786ab7ff08da2f69ef1256dd721d7edb1 (patch) | |
tree | 5d3431bfa1dae69d4ca3abff07c937e91615846c /Makefile.in | |
parent | 7fc94d71872dbc235dece6a20655d8f928185bd2 (diff) | |
download | gdb-7d695d0786ab7ff08da2f69ef1256dd721d7edb1.zip gdb-7d695d0786ab7ff08da2f69ef1256dd721d7edb1.tar.gz gdb-7d695d0786ab7ff08da2f69ef1256dd721d7edb1.tar.bz2 |
* Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
library tests.
(check-c++): Just depend on it and check-target-libstdc++-v3.
* Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index dfddbda..f7c3895 100644 --- a/Makefile.in +++ b/Makefile.in @@ -7539,17 +7539,19 @@ check-gcc: true; \ fi -.PHONY: check-c++ -check-c++: +.PHONY: check-gcc-c++ +check-gcc-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 + fi + +.PHONY: check-c++ +check-c++: check-target-libstdc++-v3 check-gcc-c++ .PHONY: install-gcc maybe-install-gcc maybe-install-gcc: |