summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/slicing/exceptions/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/slicing/exceptions/Makefile')
-rw-r--r--cpp/test/Ice/slicing/exceptions/Makefile56
1 files changed, 0 insertions, 56 deletions
diff --git a/cpp/test/Ice/slicing/exceptions/Makefile b/cpp/test/Ice/slicing/exceptions/Makefile
deleted file mode 100644
index 361292a4d26..00000000000
--- a/cpp/test/Ice/slicing/exceptions/Makefile
+++ /dev/null
@@ -1,56 +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 = ../../../..
-
-CLIENT = $(call mktestname,client)
-SERVER = $(call mktestname,server)
-SERVERAMD = $(call mktestname,serveramd)
-
-TARGETS = $(CLIENT) $(SERVER) $(SERVERAMD)
-
-SLICE_OBJS = Test.o TestAMD.o ClientPrivate.o ServerPrivate.o ServerPrivateAMD.o
-
-COBJS = Test.o \
- Client.o \
- ClientPrivate.o \
- AllTests.o
-
-SOBJS = Test.o \
- ServerPrivate.o \
- TestI.o \
- Server.o
-
-SAMDOBJS = TestAMD.o \
- ServerPrivateAMD.o \
- TestAMDI.o \
- ServerAMD.o
-
-OBJS = $(COBJS) \
- $(SOBJS) \
- $(SAMDOBJS)
-
-include $(top_srcdir)/config/Make.rules
-
-ICECPPFLAGS := -I. $(ICECPPFLAGS)
-
-CPPFLAGS := -I. -I../../../include $(CPPFLAGS)
-
-
-$(CLIENT): $(COBJS)
- rm -f $@
- $(call mktest,$@,$(COBJS),$(TEST_LIBS))
-
-$(SERVER): $(SOBJS)
- rm -f $@
- $(call mktest,$@,$(SOBJS),$(TEST_LIBS))
-
-$(SERVERAMD): $(SAMDOBJS)
- rm -f $@
- $(call mktest,$@,$(SAMDOBJS),$(TEST_LIBS))