blob: d240a492424823c8afdd4f79cc51c8ffb5c2e099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# **********************************************************************
#
# 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.
#
# **********************************************************************
$(project)_programs := icepatch2server icepatch2client icepatch2calc
$(project)_dependencies := IcePatch2 Ice
$(project)_targetdir := $(bindir)
icepatch2server_sources := $(addprefix $(currentdir)/,FileServerI.cpp Server.cpp)
icepatch2client_sources := $(addprefix $(currentdir)/,Client.cpp)
icepatch2calc_sources := $(addprefix $(currentdir)/,Calc.cpp)
projects += $(project)
|