summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-04-30 19:26:20 +0200
committerJose <jose@zeroc.com>2014-04-30 19:26:20 +0200
commit1dca44f49cf4ec1a000378972787ead020696b66 (patch)
tree98caa6120e50c0591f1551dd2d956832789a31b3 /cpp
parentFixed parallel build issue (diff)
downloadice-1dca44f49cf4ec1a000378972787ead020696b66.tar.bz2
ice-1dca44f49cf4ec1a000378972787ead020696b66.tar.xz
ice-1dca44f49cf4ec1a000378972787ead020696b66.zip
Fixed IceGrid tests Windows makefile
Diffstat (limited to 'cpp')
-rw-r--r--cpp/test/IceGrid/Makefile.mak45
1 files changed, 22 insertions, 23 deletions
diff --git a/cpp/test/IceGrid/Makefile.mak b/cpp/test/IceGrid/Makefile.mak
index 19754433e5b..ecea19801a9 100644
--- a/cpp/test/IceGrid/Makefile.mak
+++ b/cpp/test/IceGrid/Makefile.mak
@@ -7,26 +7,25 @@
#
# **********************************************************************
-top_srcdir = ../..
-
-include $(top_srcdir)/config/Make.rules
-
-
-SUBDIRS = simple deployer session update noRestartUpdate activation replicaGroup allocation replication distribution admin
-
-
-.PHONY: $(EVERYTHING) $(SUBDIRS)
-
-all:: $(SUBDIRS)
-
-$(SUBDIRS):
- @echo "making all in $@"
- @$(MAKE) all --directory=$@
-
-
-$(EVERYTHING_EXCEPT_ALL)::
- @for subdir in $(SUBDIRS); \
- do \
- echo "making $@ in $$subdir"; \
- ( cd $$subdir && $(MAKE) $@ ) || exit 1; \
- done
+top_srcdir = ..\..
+
+!include $(top_srcdir)/config/Make.rules.mak
+
+
+SUBDIRS = activation \
+ admin \
+ allocation \
+ deployer \
+ distribution \
+ fileLock \
+ noRestartUpdate \
+ replicaGroup \
+ replication \
+ session \
+ simple \
+ update
+
+$(EVERYTHING)::
+ @for %i in ( $(SUBDIRS) ) do \
+ @echo "making $@ in %i" && \
+ cmd /c "cd %i && $(MAKE) -nologo -f Makefile.mak $@" || exit 1