ICE 3.4.2
[php5-ice-freebsdport.git] / cpp / test / IceUtil / inputUtil / Makefile
blob8e15e39616e013998f34c5c929177528ff80af17
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
14 TARGETS = $(CLIENT)
16 OBJS = Client.o
19 SRCS = $(OBJS:.o=.cpp)
21 include $(top_srcdir)/config/Make.rules
23 CPPFLAGS := -I. -I../../include $(CPPFLAGS)
25 $(CLIENT): $(OBJS)
26 rm -f $@
27 $(CXX) $(LDFLAGS) -o $@ $(OBJS) $(BASELIBS)
29 include .depend