summaryrefslogtreecommitdiff
path: root/cpp/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Makefile')
-rw-r--r--cpp/test/Makefile54
1 files changed, 0 insertions, 54 deletions
diff --git a/cpp/test/Makefile b/cpp/test/Makefile
deleted file mode 100644
index 2669b195948..00000000000
--- a/cpp/test/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-# **********************************************************************
-#
-# Copyright (c) 2003-2016 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
-
-ifeq ($(CPP11_MAPPING),yes)
-SUBDIRS = Common \
- IceUtil \
- Slice \
- Ice \
- IceSSL \
- IceDiscovery \
- IceBox
-else
-
-SUBDIRS = Common \
- IceUtil \
- Slice \
- Ice \
- IceSSL \
- IceDiscovery
-
-ifeq ($(findstring MINGW,$(UNAME)),)
-SUBDIRS := $(SUBDIRS) \
- IceBox \
- IceStorm \
- Glacier2 \
- IceGrid
-endif
-
-endif
-
-.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