Makefile revision 970
1516N/A###############################################################################
565N/A#
565N/A# Xrender 1.x Makefile
565N/A#
565N/A# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
565N/A#
565N/A# Permission is hereby granted, free of charge, to any person obtaining a
565N/A# copy of this software and associated documentation files (the "Software"),
565N/A# to deal in the Software without restriction, including without limitation
565N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
565N/A# and/or sell copies of the Software, and to permit persons to whom the
565N/A# Software is furnished to do so, subject to the following conditions:
565N/A#
565N/A# The above copyright notice and this permission notice (including the next
565N/A# paragraph) shall be included in all copies or substantial portions of the
565N/A# Software.
565N/A#
565N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
565N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
565N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
565N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
996N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
996N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
3329N/A# DEALINGS IN THE SOFTWARE.
996N/A#
565N/A#
1638N/A
3356N/A# Package name used in tarballs
1638N/AMODULE_NAME=libXrender
2690N/A
2690N/A# Version number (used in path names)
2089N/AMODULE_VERSION=0.9.6
2089N/A
2089N/A# Checksums for upstream tarball
2089N/ATARBALL_MD5 = 3b3b7d076c2384b6c600c0b5f4ba971f
2089N/ATARBALL_SHA1 = 65bd96dc17da6b064f95109da02d9c9d14cb06dc
1638N/A
2690N/A# Patches to apply to source after unpacking, in order
2690N/ASOURCE_PATCHES =
2690N/A
2828N/A# Library name
2828N/ALIBNAME=Xrender
2690N/A
2690N/A# Man pages to apply Sun footer to & attributes to list
2690N/A#SUNTOUCHED_MANPAGES=man/*.man
2690N/AMODULE_STABILITY=Volatile
2690N/ALIB_MAN_SUFFIX=3xrender
2690N/A
2690N/A# ARC cases that covered this module
2690N/A# LSARC/2001/125 Xserver Render Extension
2690N/AMODULE_ARC_CASES = LSARC/2001/125
2690N/A# LSARC/2004/414 X Render Extension 0.8
2690N/AMODULE_ARC_CASES += LSARC/2004/414
2690N/A# LSARC/2007/193 X Render Extension: Protocol 0.10 / API 0.9
2690N/AMODULE_ARC_CASES += LSARC/2007/193
2690N/A
1853N/A# Environment variable options to GNU autoconf configure script
926N/AMODULE_CFLAGS=-I../include
2219N/A
1736N/A# Link with version mapfile
1537N/AMODULE_LD_OPTIONS = -M $(PWD)/mapfile-vers
2524N/A
3204N/A
996N/A
1736N/A# pkg-config files that need to have -R added
2690N/AFIX_PC_FILES=xrender.pc.in
3234N/A
1032N/A# Compatibility links from /usr/X11/lib to /usr/lib
2219N/AMODULE_X11_LIBCOMPAT_LINKS = libXrender.so libXrender.so.1
2690N/A
2524N/Ainclude ../Makefile.inc
3245N/A