blob: 71e616a0384d8b979726671a3005cd19710b4041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# **********************************************************************
#
# Copyright (c) 2003-2016 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 itself included by Make.rules
#
include $(top_srcdir)/../cpp/config/Make.rules.$(UNAME)
#
# Need .so for Python extension
#
# Note: Python also loads the extension in IcePy.a if IcePy.so points to it
#
mkpylibfilename = $(1).so
mkylibname = $(1).so
mkshlib = $(CXX) -qmkshrobj $(LDFLAGS) -o $(1) $(3) $(4)
|