diff options
Diffstat (limited to 'cpp/test/IceDiscovery/simple/Makefile.mak')
-rw-r--r-- | cpp/test/IceDiscovery/simple/Makefile.mak | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/cpp/test/IceDiscovery/simple/Makefile.mak b/cpp/test/IceDiscovery/simple/Makefile.mak deleted file mode 100644 index 6a4ff516ee1..00000000000 --- a/cpp/test/IceDiscovery/simple/Makefile.mak +++ /dev/null @@ -1,59 +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 -!else -NAME_PREFIX = Ice_udp_ -EXT = .dll -!endif - -CLIENT = $(NAME_PREFIX)client -SERVER = $(NAME_PREFIX)server - -TARGETS = $(CLIENT)$(EXT) $(SERVER)$(EXT) - -SLICE_OBJS = .\Test.obj - -COBJS = $(SLICE_OBJS) \ - .\Client.obj \ - .\AllTests.obj - -SOBJS = $(SLICE_OBJS) \ - .\TestI.obj \ - .\Server.obj - -OBJS = $(COBJS) \ - $(SOBJS) - -!include $(top_srcdir)/config/Make.rules.mak - -CPPFLAGS = -I. -I../../include $(CPPFLAGS) -DWIN32_LEAN_AND_MEAN -LINKWITH = icediscovery$(LIBSUFFIX).lib $(LIBS) - -!if "$(GENERATE_PDB)" == "yes" -CPDBFLAGS = /pdb:$(CLIENT).pdb -SPDBFLAGS = /pdb:$(SERVER).pdb -!endif - -$(CLIENT)$(EXT): $(COBJS) - $(LINK) $(LD_TESTFLAGS) $(CPDBFLAGS) $(COBJS) $(PREOUT)$@ $(PRELIBS)$(LINKWITH) - @if exist $@.manifest echo ^ ^ ^ Embedding manifest using $(MT) && \ - $(MT) -nologo -manifest $@.manifest -outputresource:$@;#1 && del /q $@.manifest - -$(SERVER)$(EXT): $(SOBJS) - $(LINK) $(LD_TESTFLAGS) $(SPDBFLAGS) $(SOBJS) $(PREOUT)$@ $(PRELIBS)$(LIBS) - @if exist $@.manifest echo ^ ^ ^ Embedding manifest using $(MT) && \ - $(MT) -nologo -manifest $@.manifest -outputresource:$@;#1 && del /q $@.manifest - -clean:: - del /q Test.cpp Test.h |