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