summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/plugin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/plugin/Makefile')
-rw-r--r--cpp/test/Ice/plugin/Makefile46
1 files changed, 0 insertions, 46 deletions
diff --git a/cpp/test/Ice/plugin/Makefile b/cpp/test/Ice/plugin/Makefile
deleted file mode 100644
index 7510559b51e..00000000000
--- a/cpp/test/Ice/plugin/Makefile
+++ /dev/null
@@ -1,46 +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 = ../../..
-
-LIBFILENAME = $(call mklibfilename,TestPlugin,$(VERSION))
-SONAME = $(call mksoname,TestPlugin,$(SOVERSION))
-LIBNAME = $(call mklibname,TestPlugin)
-CLIENT = $(call mktestname,client)
-PLUGINDIR = plugins
-
-TARGETS = $(CLIENT) \
- $(call mklibtargets,$(PLUGINDIR)/$(LIBFILENAME),$(PLUGINDIR)/$(SONAME),$(PLUGINDIR)/$(LIBNAME))
-
-COBJS = Client.o \
-
-POBJS = Plugin.o
-
-OBJS = $(COBJS) \
- $(POBJS)
-
-include $(top_srcdir)/config/Make.rules
-
-CPPFLAGS := -I. -I../../include $(CPPFLAGS)
-
-$(CLIENT): $(COBJS)
- rm -f $@
- $(call mktest,$@,$(COBJS),$(LIBS))
-
-$(PLUGINDIR)/$(LIBFILENAME): $(POBJS)
- rm -f $@
- $(call mkshlib,$@,$(SONAME),$(POBJS),$(LIBS))
-
-$(PLUGINDIR)/$(SONAME): $(PLUGINDIR)/$(LIBFILENAME)
- rm -f $@
- ln -s $(LIBFILENAME) $@
-
-$(PLUGINDIR)/$(LIBNAME): $(PLUGINDIR)/$(SONAME)
- rm -f $@
- ln -s $(SONAME) $@