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