blob: d9fb4ca16e4796e6a431d824cfcdc234f2a15be3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# **********************************************************************
#
# 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.
#
# **********************************************************************
#
# This file is included by Make.rules when uname is Linux.
#
include $(top_srcdir)/../cpp/config/Make.rules.$(UNAME)
mkshlib = $(CXX) -shared $(LDFLAGS) $(LDEXEFLAGS) -o $(1) -Wl,-h,$(2) $(3) $(4) -lpthread
|