Makefile revision 472
851N/A###############################################################################
851N/A#
1370N/A# ICE 1.x Makefile
851N/A#
1351N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
851N/A# Use subject to license terms.
851N/A#
919N/A# Permission is hereby granted, free of charge, to any person obtaining a
919N/A# copy of this software and associated documentation files (the
919N/A# "Software"), to deal in the Software without restriction, including
919N/A# without limitation the rights to use, copy, modify, merge, publish,
919N/A# distribute, and/or sell copies of the Software, and to permit persons
919N/A# to whom the Software is furnished to do so, provided that the above
919N/A# copyright notice(s) and this permission notice appear in all copies of
919N/A# the Software and that both the above copyright notice(s) and this
919N/A# permission notice appear in supporting documentation.
919N/A#
919N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
919N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
919N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
919N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
919N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
919N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
919N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
851N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
851N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
851N/A#
851N/A# Except as contained in this notice, the name of a copyright holder
851N/A# shall not be used in advertising or otherwise to promote the sale, use
851N/A# or other dealings in this Software without prior written authorization
851N/A# of the copyright holder.
1370N/A#
851N/A# @(#)Makefile 1.1 08/02/21
911N/A#
1370N/A
1370N/A# Package name used in tarballs
1370N/ALIB_MODULE=libICE
911N/A
1281N/A# Version number (used in path names)
1301N/ALIB_VERS=1.0.4
1281N/A
851N/A# Patches to apply to source after unpacking, in order
851N/ASOURCE_PATCHES = icetrans.c.patch
851N/A
851N/A# Library name (used for specfiles/mapfiles)
851N/ALIBNAME=ICE
1179N/A
851N/A# Man pages to apply Sun footer to & attributes to list
1299N/ASUNTOUCHED_MANPAGES=
1299N/ASUN_PACKAGE=SUNWxwice
1299N/ALIB_STABILITY=Committed
1299N/ALIB_MAN_SUFFIX=3ICE
1196N/ALIB_SUNTOUCH_MAN_FLAGS= -a '{Availability, $(SUN_PACKAGE)} {Interface Stability, $(LIB_STABILITY)} {MT-Level, Unsafe}'
1196N/A
1196N/A# Command line options to GNU autoconf configure script
1196N/ALIB_ADD_CONFIG_OPTS = --disable-libtool-lock \
1196N/A --enable-unix-transport \
1196N/A --enable-tcp-transport \
851N/A --enable-IPv6 \
1088N/A --enable-lint-library \
1088N/A --with-pic \
1088N/A --with-lint \
1088N/A --with-release-version="1.0.4"
1088N/A
851N/A# Library built in tree
1281N/ALIB_BUILT=$(BUILD_DIR)/.libs/libICE.so.6.3.0
1281N/A
1281N/A# libICE specific flags needed for Xtrans
1097N/ALIB_ADD_CFLAGS = -DTCPCONN -DUNIXCONN -DICE_t -DTRANS_CLIENT -DTRANS_SERVER -ULOCALCONN
1097N/A
1097N/A# Use specfile to make mapfile & link with it
1097N/ALIB_ADD_BUILD_DEPS = $(BUILD_DIR)/$(SPECMAP)
1097N/A
851N/ALIB_ADD_LD_OPTIONS = -M $(PWD)/$(BUILD_DIR)/$(SPECMAP)
851N/A
1088N/A# pkg-config files that need to have -R added
1088N/AFIX_PC_FILES=ice.pc.in
1088N/A
1088N/Ainclude ../Makefile.inc
1088N/A