Makefile revision 1265
3853N/A###############################################################################
3853N/A#
3853N/A# Xtst library Makefile
3853N/A#
3853N/A# Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
3853N/A#
3853N/A# Permission is hereby granted, free of charge, to any person obtaining a
3853N/A# copy of this software and associated documentation files (the "Software"),
3853N/A# to deal in the Software without restriction, including without limitation
3853N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
3853N/A# and/or sell copies of the Software, and to permit persons to whom the
3853N/A# Software is furnished to do so, subject to the following conditions:
3853N/A#
3853N/A# The above copyright notice and this permission notice (including the next
3853N/A# paragraph) shall be included in all copies or substantial portions of the
3853N/A# Software.
3853N/A#
3853N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3853N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3853N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
3853N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3853N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
3853N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
3853N/A# DEALINGS IN THE SOFTWARE.
5035N/A#
3853N/A#
3853N/A
3853N/A# Package name used in tarballs
3853N/AMODULE_NAME=libXtst
3853N/A
4803N/A# Version number (used in path names)
3853N/AMODULE_VERSION=1.2.0
3853N/A
3853N/A# Checksums for upstream tarball
4141N/ATARBALL_MD5 = 7c592c72da6676f8b0aeec9133b81686
3853N/ATARBALL_SHA1 = 9fb06ed599caf7f9e7115cbbfadf02b47c17aa72
3853N/A
3853N/A# Patches to apply to source after unpacking, in order
3853N/ASOURCE_PATCHES = \
3853N/A solaris-abi.patch
4141N/A
3898N/A# Need to regenerate automake files after solaris-abi.patch
3898N/AAUTORECONF=yes
4920N/A
4518N/A# Library name
3853N/ALIBNAME=Xtst
3853N/A
3853N/A# Man pages to apply Sun footer to & attributes to list
3853N/ASUNTOUCHED_MANPAGES=man/*.man
4803N/AMODULE_STABILITY=Committed
3853N/ALIB_MAN_SUFFIX=3xtst
3853N/A
3853N/A# Link with version mapfile
3853N/AMODULE_LD_OPTIONS = -M $(PWD)/mapfile-vers
3853N/A
3853N/A# configure includes xi in PKG_CHECK_MODULES since libXi headers & macros
3853N/A# are used, but currently no functions are actually linked with, so we can
3853N/A# ignore it when linking
3853N/AMODULE_LD_OPTIONS += -z ignore
3853N/A
3853N/A# pkg-config files that need to have -R added
3853N/AFIX_PC_FILES=xtst.pc.in
3853N/A
3853N/A# Compatibility links from /usr/X11/lib to /usr/lib
3853N/AMODULE_X11_LIBCOMPAT_LINKS = libXtst.so libXtst.so.1
4803N/A
4803N/Ainclude ../Makefile.inc
3853N/A
3853N/A