ICE 3.4.2
[php5-ice-freebsdport.git] / cpp / test / Ice / stream / Makefile.mak
blob2f4e97236b685a3a594baf74ec9e6c570c6fa946
1 # **********************************************************************
3 # Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
5 # This copy of Ice is licensed to you under the terms described in the
6 # ICE_LICENSE file included in this distribution.
8 # **********************************************************************
10 top_srcdir = ..\..\..
12 CLIENT = client.exe
14 TARGETS = $(CLIENT)
16 COBJS = Test.obj \
17 Client.obj
19 SRCS = $(COBJS:.obj=.cpp)
21 !include $(top_srcdir)/config/Make.rules.mak
23 SLICE2CPPFLAGS = --stream $(SLICE2CPPFLAGS)
24 CPPFLAGS = -I. -I../../include $(CPPFLAGS) -DWIN32_LEAN_AND_MEAN
26 !if "$(GENERATE_PDB)" == "yes"
27 PDBFLAGS = /pdb:$(CLIENT:.exe=.pdb)
28 !endif
30 $(CLIENT): $(COBJS)
31 $(LINK) $(LD_EXEFLAGS) $(PDBFLAGS) $(SETARGV) $(COBJS) $(PREOUT)$@ $(PRELIBS)$(LIBS)
32 @if exist $@.manifest echo ^ ^ ^ Embedding manifest using $(MT) && \
33 $(MT) -nologo -manifest $@.manifest -outputresource:$@;#1 && del /q $@.manifest
35 clean::
36 del /q Test.cpp Test.h
38 !include .depend.mak