Makefile revision 1258
224N/A###############################################################################
224N/A#
224N/A# libFS Makefile
224N/A#
224N/A# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
224N/A#
224N/A# Permission is hereby granted, free of charge, to any person obtaining a
224N/A# copy of this software and associated documentation files (the "Software"),
224N/A# to deal in the Software without restriction, including without limitation
224N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
224N/A# and/or sell copies of the Software, and to permit persons to whom the
224N/A# Software is furnished to do so, subject to the following conditions:
224N/A#
224N/A# The above copyright notice and this permission notice (including the next
224N/A# paragraph) shall be included in all copies or substantial portions of the
224N/A# Software.
224N/A#
224N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
224N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
224N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1392N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
224N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
224N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
224N/A# DEALINGS IN THE SOFTWARE.
224N/A#
1162N/A#
1162N/A
224N/A# Package name used in tarballs
224N/AMODULE_NAME=libFS
618N/A
224N/A# Version number (used in path names)
844N/AMODULE_VERSION=1.0.3
844N/A
1162N/A# Checksums for upstream tarball
224N/ATARBALL_MD5 = 8e68a3a6f3cac936042b240b20d1fb7d
224N/ATARBALL_SHA1 = 2b33fa17369605303ae70a7de1aa681879249c92
1258N/A
224N/A# Patches to apply to source after unpacking, in order
224N/ASOURCE_PATCHES = solaris-abi.patch
224N/ASOURCE_PATCHES += studio.patch,-p1
224N/ASOURCE_PATCHES += lint.patch,-p1
224N/A
224N/A# Regenerate Makefile.in's from Makefile.am's after patching them
224N/AAUTORECONF=yes
224N/A
224N/A# Library name
224N/ALIBNAME=FS
224N/A
224N/A# Man pages to apply Sun footer to & attributes to list
224N/A#SUNTOUCHED_MANPAGES=man/*.man
224N/AMODULE_STABILITY=Uncommitted
224N/ALIB_MAN_SUFFIX=3FS
224N/A
224N/A# Link with version mapfile
224N/AMODULE_LD_OPTIONS = -M $(PWD)/mapfile-vers
224N/A
224N/A# pkg-config files that need to have -R added
224N/AFIX_PC_FILES=libfs.pc.in
224N/A
224N/A# Compatibility links from /usr/X11/lib to /usr/lib
224N/AMODULE_X11_LIBCOMPAT_LINKS = libFS.so libFS.so.5
224N/A
224N/Ainclude ../Makefile.inc
1292N/A