summaryrefslogtreecommitdiff
path: root/cpp/test/Makefile.mak
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Makefile.mak')
-rw-r--r--cpp/test/Makefile.mak51
1 files changed, 0 insertions, 51 deletions
diff --git a/cpp/test/Makefile.mak b/cpp/test/Makefile.mak
deleted file mode 100644
index 4a101b778f4..00000000000
--- a/cpp/test/Makefile.mak
+++ /dev/null
@@ -1,51 +0,0 @@
-# **********************************************************************
-#
-# Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
-#
-# This copy of Ice is licensed to you under the terms described in the
-# ICE_LICENSE file included in this distribution.
-#
-# **********************************************************************
-
-top_srcdir = ..
-
-!include $(top_srcdir)/config/Make.rules.mak
-
-!if "$(WINRT)" == "yes"
-
-SUBDIRS = Common \
- Ice
-
-!elseif "$(CPP11_MAPPING)" == "yes"
-SUBDIRS = IceUtil \
- Slice \
- Common \
- Ice \
- IceSSL \
- IceDiscovery \
- IceBox
-!elseif "$(CPP_COMPILER)" == "VC100"
-SUBDIRS = IceUtil \
- Slice \
- Common \
- Ice \
- IceSSL \
- IceDiscovery
-!else
-SUBDIRS = IceUtil \
- Slice \
- Common \
- Ice \
- IceSSL \
- Glacier2 \
- IceStorm \
- IceGrid \
- IceBox \
- IceDiscovery
-
-!endif
-
-$(EVERYTHING)::
- @for %i in ( $(SUBDIRS) ) do \
- @echo "making $@ in %i" && \
- cmd /c "cd %i && $(MAKE) -nologo -f Makefile.mak $@" || exit 1