summaryrefslogtreecommitdiff
path: root/Ix/CPP/unittest/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Ix/CPP/unittest/makefile')
-rw-r--r--Ix/CPP/unittest/makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/Ix/CPP/unittest/makefile b/Ix/CPP/unittest/makefile
deleted file mode 100644
index 4fea142..0000000
--- a/Ix/CPP/unittest/makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-!ifndef Config
-Config=Debug
-!endif
-
-O=..\..\bin\$(Config)
-
-!message Building ===== $(Config) =====
-
-program=testbench.exe
-INCLUDE=$(INCLUDE);../src
-
-!if "$(Config)"=="Debug"
-OPTIONS=/Od
-!else
-OPTIONS=/Ox
-!endif
-OPTIONS=$(OPTIONS) /Zi /I$(BOOST) /DBOOST_RESULT_OF_USE_DECLTYPE
-
-runtests : "$O/$(program)"
- "$O/$(program)"
-
-
-all : "$O/$(program)"
-
-$O :
- mkdir $O
-
-"$O/$(program)" : testbench.cpp testbench.hpp ../src/cpplinq/*.hpp $O
- $(CPP) $(OPTIONS) /EHsc /Zi /Fe"$@" /Fo$O/ testbench.cpp
-
-clean :
- del /Q $O\*.exe
- del /Q $O\*.pdb
- del /Q $O\*.obj
- del /Q $O\*.ilk