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