Makefile revision 963
325N/A###############################################################################
325N/A#
325N/A# xtrans 1.x Makefile
325N/A#
325N/A# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
325N/A#
325N/A# Permission is hereby granted, free of charge, to any person obtaining a
325N/A# copy of this software and associated documentation files (the "Software"),
325N/A# to deal in the Software without restriction, including without limitation
325N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
325N/A# and/or sell copies of the Software, and to permit persons to whom the
325N/A# Software is furnished to do so, subject to the following conditions:
325N/A#
325N/A# The above copyright notice and this permission notice (including the next
325N/A# paragraph) shall be included in all copies or substantial portions of the
325N/A# Software.
325N/A#
325N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
325N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
325N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
325N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
325N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
325N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
325N/A# DEALINGS IN THE SOFTWARE.
325N/A#
325N/A#
325N/A
325N/A# IMPORTANT NOTE: xtrans is not really a library, but shared source code
325N/A# compiled into other modules at build time.
325N/A
325N/A# Package name used in tarballs
325N/AMODULE_NAME=xtrans
325N/A
325N/A# Version number (used in path names)
325N/AMODULE_VERSION=1.2.5
325N/A
325N/A# Checksums for upstream tarball
325N/ATARBALL_MD5 = 2d1e57e82acc5f21797e92341415af2f
325N/ATARBALL_SHA1 = e8c4ce58b42d05e613fe535319a7d7f45f30f3e9
325N/A
325N/A# Patches to apply to source after unpacking, in order
325N/ASOURCE_PATCHES = inetv6.patch \
325N/A tsol-unix-domain.patch
325N/A
325N/A# Library name (used for specfiles/mapfiles)
325N/ALIBNAME=xtrans
325N/A
325N/A# Man pages to apply Sun footer to & attributes to list
325N/A# - Xtrans has none
325N/A
325N/A# Because xtrans is not a real library, don't need 64-bit build,
325N/A# and the pkg-config file goes into share directory
325N/ABUILD_TYPES=32
325N/ABUILD_TYPES_SET=yes
325N/A
325N/AMODULE_PKGCONFIG_DIR=$(PKGCONFIG_DIR_SHARE)
325N/AMODULE_PKGCONFIG_DIR_SET=yes
325N/A
325N/Ainclude ../Makefile.inc
325N/A
325N/A# Clean up old 64-bit builds from before we stopped building them
325N/Aclean: clean_64
325N/A
325N/Aclean_64:
325N/A -rm -rf $(BUILD_DIR_64) build_64
325N/A