From 21b4ae937e72ac0ce3037cee09add1168004179b Mon Sep 17 00:00:00 2001 From: syntheticpp Date: Mon, 20 Feb 2006 16:11:10 +0000 Subject: [PATCH] move flex_string to the end of the build process (it's so slow) git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@537 7ec92016-0320-0410-acc4-a06ded1c099a --- test/Makefile | 4 ++-- test/make.msvc.bat | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/test/Makefile b/test/Makefile index a107842..2f2b624 100755 --- a/test/Makefile +++ b/test/Makefile @@ -1,5 +1,5 @@ -SUBTARGETS = Factory flex_string Longevity OrderedStatic Pimpl RegressionTest \ - SafeFormat ScopeGuard Singleton SmallObj Visitor +SUBTARGETS = Factory Longevity OrderedStatic Pimpl RegressionTest \ + SafeFormat ScopeGuard Singleton SmallObj Visitor flex_string SUBTARGETS_CLEAN = $(foreach SUBTARGET,$(SUBTARGETS),$(SUBTARGET)-clean) .PHONY: clean all $(SUBTARGETS) $(SUBTARGETS_CLEAN) diff --git a/test/make.msvc.bat b/test/make.msvc.bat index 11df8ba..50bb1c7 100755 --- a/test/make.msvc.bat +++ b/test/make.msvc.bat @@ -3,10 +3,6 @@ cd Factory call make.msvc.bat cd .. -cd flex_string -call make.msvc.bat -cd .. - cd Longevity call make.msvc.bat cd .. @@ -43,3 +39,6 @@ cd Visitor call make.msvc.bat cd .. +cd flex_string +call make.msvc.bat +cd .. \ No newline at end of file