ICE 3.4.2
[php5-ice-freebsdport.git] / cpp / test / Ice / properties / Makefile.mak
blob190c965f2824c77021b9b932e7437f4b9816e3a1
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 = Client.obj
18 SRCS = $(COBJS:.obj=.cpp)
20 !include $(top_srcdir)/config/Make.rules.mak
22 CPPFLAGS = -I. -I../../include $(CPPFLAGS) -DWIN32_LEAN_AND_MEAN
24 !if "$(GENERATE_PDB)" == "yes"
25 PDBFLAGS = /pdb:$(CLIENT:.exe=.pdb)
26 !endif
28 $(CLIENT): $(COBJS)
29 $(LINK) $(LD_EXEFLAGS) $(PDBFLAGS) $(SETARGV) $(COBJS) $(PREOUT)$@ $(PRELIBS)$(LIBS)
30 @if exist $@.manifest echo ^ ^ ^ Embedding manifest using $(MT) && \
31 $(MT) -nologo -manifest $@.manifest -outputresource:$@;#1 && del /q $@.manifest
33 !include .depend.mak