summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/echo/Makefile.mak
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/echo/Makefile.mak')
-rw-r--r--cpp/test/Ice/echo/Makefile.mak48
1 files changed, 0 insertions, 48 deletions
diff --git a/cpp/test/Ice/echo/Makefile.mak b/cpp/test/Ice/echo/Makefile.mak
deleted file mode 100644
index 67cc290222b..00000000000
--- a/cpp/test/Ice/echo/Makefile.mak
+++ /dev/null
@@ -1,48 +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 = ..\..\..
-
-!if "$(WINRT)" != "yes"
-NAME_PREFIX =
-EXT = .exe
-OBJDIR = .
-!else
-NAME_PREFIX = Ice_invoke_
-EXT = .dll
-OBJDIR = winrt
-!endif
-
-SERVER = $(NAME_PREFIX)server
-
-TARGETS = $(SERVER)$(EXT)
-
-SLICE_OBJS = $(OBJDIR)\Test.obj
-
-OBJS = $(SLICE_OBJS) \
- $(OBJDIR)\BlobjectI.obj \
- $(OBJDIR)\Server.obj
-
-!include $(top_srcdir)/config/Make.rules.mak
-
-CPPFLAGS = -I. -I../../include $(CPPFLAGS) -DWIN32_LEAN_AND_MEAN
-LINKWITH = testcommon$(LIBSUFFIX).lib $(LIBS)
-
-!if "$(GENERATE_PDB)" == "yes"
-CPDBFLAGS = /pdb:$(CLIENT).pdb
-SPDBFLAGS = /pdb:$(SERVER).pdb
-!endif
-
-$(SERVER)$(EXT): $(OBJS)
- $(LINK) $(LD_TESTFLAGS) $(SPDBFLAGS) $(OBJS) $(PREOUT)$@ $(PRELIBS)$(LINKWITH)
- @if exist $@.manifest echo ^ ^ ^ Embedding manifest using $(MT) && \
- $(MT) -nologo -manifest $@.manifest -outputresource:$@;#1 && del /q $@.manifest
-
-clean::
- del /q Test.cpp Test.h