ICE 3.4.2
[php5-ice-freebsdport.git] / cpp / test / IceUtil / fileLock / Makefile
blob7437edf861fd7e5203e1c3af7154b80063aa6183
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
13 CLIENTF = clientFail
15 TARGETS = $(CLIENT) $(CLIENTF)
17 OBJS = Client.o
18 OBJFS = ClientFail.o
20 SRCS = $(OBJS:.o=.cpp)
22 include $(top_srcdir)/config/Make.rules
24 CPPFLAGS := -I. -I../../include $(CPPFLAGS)
26 $(CLIENT): $(OBJS)
27 rm -f $@
28 $(CXX) $(LDFLAGS) -o $@ $(OBJS) $(BASELIBS)
31 $(CLIENTF): $(OBJFS)
32 rm -f $@
33 $(CXX) $(LDFLAGS) -o $@ $(OBJFS) $(BASELIBS)
35 clean::
36 -rm -f run.pid
38 include .depend