Makefile revision 919
346af0930020342df40a1ca8d13eb185ad48067evboxsync###############################################################################
346af0930020342df40a1ca8d13eb185ad48067evboxsync#
346af0930020342df40a1ca8d13eb185ad48067evboxsync# Xpm Makefile
346af0930020342df40a1ca8d13eb185ad48067evboxsync#
346af0930020342df40a1ca8d13eb185ad48067evboxsync# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
346af0930020342df40a1ca8d13eb185ad48067evboxsync# Use is subject to license terms.
346af0930020342df40a1ca8d13eb185ad48067evboxsync#
346af0930020342df40a1ca8d13eb185ad48067evboxsync# Permission is hereby granted, free of charge, to any person obtaining a
346af0930020342df40a1ca8d13eb185ad48067evboxsync# copy of this software and associated documentation files (the "Software"),
346af0930020342df40a1ca8d13eb185ad48067evboxsync# to deal in the Software without restriction, including without limitation
346af0930020342df40a1ca8d13eb185ad48067evboxsync# the rights to use, copy, modify, merge, publish, distribute, sublicense,
346af0930020342df40a1ca8d13eb185ad48067evboxsync# and/or sell copies of the Software, and to permit persons to whom the
346af0930020342df40a1ca8d13eb185ad48067evboxsync# Software is furnished to do so, subject to the following conditions:
346af0930020342df40a1ca8d13eb185ad48067evboxsync#
346af0930020342df40a1ca8d13eb185ad48067evboxsync# The above copyright notice and this permission notice (including the next
346af0930020342df40a1ca8d13eb185ad48067evboxsync# paragraph) shall be included in all copies or substantial portions of the
346af0930020342df40a1ca8d13eb185ad48067evboxsync# Software.
346af0930020342df40a1ca8d13eb185ad48067evboxsync#
346af0930020342df40a1ca8d13eb185ad48067evboxsync# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
346af0930020342df40a1ca8d13eb185ad48067evboxsync# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
346af0930020342df40a1ca8d13eb185ad48067evboxsync# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# DEALINGS IN THE SOFTWARE.
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync#
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync#
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# Package name used in tarballs
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsyncMODULE_NAME=libXpm
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# Version number (used in path names)
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsyncMODULE_VERSION=3.5.8
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# Checksums for upstream tarball
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsyncTARBALL_MD5 = 38e58e72d476a74298a59052fde185a3
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsyncTARBALL_SHA1 = 3bfc833ed4527f74b1c66c386da62271d0313413
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# Patches to apply to source after unpacking, in order
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsyncSOURCE_PATCHES = setuid.patch
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# Library name
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsyncLIBNAME=Xpm
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync
8bf8c6b1914c9e7e60b1547888400668f1774497vboxsync# Library man pages to apply Sun footer to & attributes to list
346af0930020342df40a1ca8d13eb185ad48067evboxsync# SUNTOUCHED_MANPAGES=
0e1df2d387f24e745916e4a97a3c28da018d1189vboxsyncSUN_PACKAGE=SUNWxwplt
346af0930020342df40a1ca8d13eb185ad48067evboxsyncMODULE_STABILITY=Uncommitted
346af0930020342df40a1ca8d13eb185ad48067evboxsyncLIB_MAN_SUFFIX=3
346af0930020342df40a1ca8d13eb185ad48067evboxsync
346af0930020342df40a1ca8d13eb185ad48067evboxsync
346af0930020342df40a1ca8d13eb185ad48067evboxsync
346af0930020342df40a1ca8d13eb185ad48067evboxsync# Link with version mapfile
346af0930020342df40a1ca8d13eb185ad48067evboxsyncMODULE_LD_OPTIONS = -M $(PWD)/mapfile-vers
346af0930020342df40a1ca8d13eb185ad48067evboxsync
346af0930020342df40a1ca8d13eb185ad48067evboxsync# pkg-config files that need to have -R added
346af0930020342df40a1ca8d13eb185ad48067evboxsyncFIX_PC_FILES=xpm.pc.in
346af0930020342df40a1ca8d13eb185ad48067evboxsync
346af0930020342df40a1ca8d13eb185ad48067evboxsync# Additional arguments to pass to make
346af0930020342df40a1ca8d13eb185ad48067evboxsyncMODULE_MAKEFLAGS= -e SUBDIRS=src
19a29c5b8ea65c618ae3825b6cf84bc3688a36b0vboxsync
346af0930020342df40a1ca8d13eb185ad48067evboxsyncinclude ../Makefile.inc
346af0930020342df40a1ca8d13eb185ad48067evboxsync
0e1df2d387f24e745916e4a97a3c28da018d1189vboxsync