diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-18 01:52:08 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-18 01:52:08 +0000 |
commit | 30aa7dad8d5a9fcc583f18ecfc927d153cf255f0 (patch) | |
tree | f6923f737c6fdecf4b68a349d75dd98053d0038c /libstdc++-v3/Makefile.in | |
parent | ba0bcb99f5d223c26c8661aa95e8f1e7305e69d7 (diff) | |
download | gcc-30aa7dad8d5a9fcc583f18ecfc927d153cf255f0.tar.gz |
2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
* scripts: New.
* config/abi/extract_symvers: Move to...
* scripts/extract_symvers: ...here.
* mkcheck.in: Move to..
* scripts/check_survey.in: ...here.
* testsuite_flags.in: Move to..
* scripts/testsuite_flags.in: ...here.
* configure.in: Change check and testsuite_flags locations.
* configure: Regenerate.
* testsuite/Makefile.am (current_symbols.txt): Change location.
* testsuite/Makefile.in: Regenerate.
* testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Modify
location of testsuite_flags.
* Makefile.am (check-script): Move..
(check-script-install): Move...
* testsuite/Makefile.am: ... here.
* testsuite/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68132 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/Makefile.in')
-rw-r--r-- | libstdc++-v3/Makefile.in | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/libstdc++-v3/Makefile.in b/libstdc++-v3/Makefile.in index cdd497cac6d..956585bc26f 100644 --- a/libstdc++-v3/Makefile.in +++ b/libstdc++-v3/Makefile.in @@ -210,10 +210,9 @@ AM_MAKEFLAGS = \ FLAGS_TO_PASS = $(AM_MAKEFLAGS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = mkcheck testsuite_flags +CONFIG_CLEAN_FILES = DIST_COMMON = README ./stamp-h.in ChangeLog Makefile.am Makefile.in \ -acconfig.h acinclude.m4 aclocal.m4 config.h.in configure configure.in \ -mkcheck.in testsuite_flags.in +acconfig.h acinclude.m4 aclocal.m4 config.h.in configure configure.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) @@ -264,10 +263,6 @@ distclean-hdr: -rm -f config.h maintainer-clean-hdr: -mkcheck: $(top_builddir)/config.status mkcheck.in - cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status -testsuite_flags: $(top_builddir)/config.status testsuite_flags.in - cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. @@ -479,21 +474,6 @@ distclean-generic clean-generic maintainer-clean-generic clean \ mostlyclean distclean maintainer-clean -# These two special 'check-script' rules use the bash script 'mkcheck' -# to do testing. This script is not as portable as the dejagnu test -# harness, and is thus off by default. It does produce interesting -# output however, including various performance analysis items like -# compile time, execution time, and binary size. -check-script: $(top_builddir)/mkcheck - -(chmod + $(top_builddir)/mkcheck; \ - cd testsuite; \ - @glibcpp_builddir@/mkcheck 0) - -check-script-install: $(top_builddir)/mkcheck - -(chmod + $(top_builddir)/mkcheck; \ - cd testsuite; \ - @glibcpp_builddir@/mkcheck 1) - # These rules are messy, but are hella worth it. doxygen: -(srcdir=`cd ${top_srcdir}; ${PWD}`; \ |