summaryrefslogtreecommitdiff
path: root/tests/Makefile.vac
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile.vac')
-rw-r--r--tests/Makefile.vac35
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/Makefile.vac b/tests/Makefile.vac
deleted file mode 100644
index a37054dad31..00000000000
--- a/tests/Makefile.vac
+++ /dev/null
@@ -1,35 +0,0 @@
-#----------------------------------------------------------------------------
-# $Id$
-#
-# Makefile for building tests using Visual Age C++ Incremental compiler
-#----------------------------------------------------------------------------
-
-# There is a tests.icp Visual Age C++ 5 Project file which will build all
-# of the tests; however, running vacbld_r on that project from here may
-# take so long that the nightly build times out the make and tries to
-# kill off the vacbld_r command. This produces a big mess of broken .ics
-# files, and not-built tests. Instead, run through all of the tests
-# we want, and build each individually, using the configuration.
-
-iccs := $(wildcard *.icc)
-tests := $(filter-out vacpp_setup.icc,$(iccs))
-exes := $(basename $tests)
-codestores := $(addsuffix .ics, $(exes))
-
-all:
- @for t in $(tests); \
- do \
- echo vacbld_r $$t -sev=w; \
- vacbld_r $$t -sev=w; \
- done
-
-# vacbld_r -p tests.icp:all -sev=w -showprogress=60
-
-clean:
- /bin/rm -rf $(codestores)
-
-realclean: clean
- /bin/rm -rf $(exes) libDLL_Test.$(SOEXT)
- /bin/rm -rf log/*.log
-
-# vacbld_r -p tests.icp:all -clean