Makefile revision 425
172N/A###############################################################################
172N/A#
172N/A# libFS Makefile
172N/A#
172N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
172N/A# Use subject to license terms.
172N/A#
172N/A# Permission is hereby granted, free of charge, to any person obtaining a
172N/A# copy of this software and associated documentation files (the
172N/A# "Software"), to deal in the Software without restriction, including
172N/A# without limitation the rights to use, copy, modify, merge, publish,
172N/A# distribute, and/or sell copies of the Software, and to permit persons
172N/A# to whom the Software is furnished to do so, provided that the above
172N/A# copyright notice(s) and this permission notice appear in all copies of
172N/A# the Software and that both the above copyright notice(s) and this
172N/A# permission notice appear in supporting documentation.
172N/A#
172N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
172N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
172N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
172N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
172N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
5358N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
172N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
5680N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
172N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
172N/A#
1244N/A# Except as contained in this notice, the name of a copyright holder
3572N/A# shall not be used in advertising or otherwise to promote the sale, use
5358N/A# or other dealings in this Software without prior written authorization
3839N/A# of the copyright holder.
3839N/A#
3839N/A# @(#)Makefile 1.1 08/05/28
618N/A#
3572N/A
1244N/A# Package name used in tarballs
2001N/ALIB_MODULE=libFS
5358N/A
3839N/A# Version number (used in path names)
2001N/ALIB_VERS=1.0.1
1258N/A
3572N/A# Patches to apply to source after unpacking, in order
3329N/ASOURCE_PATCHES = solaris-abi.patch
172N/A
172N/A# Regenerate Makefile.in's from Makefile.am's after patching them
5680N/AAUTORECONF=true
5680N/A
2001N/A# Library name
5680N/ALIBNAME=FS
172N/A
5680N/A# Man pages to apply Sun footer to & attributes to list
5680N/A#SUNTOUCHED_MANPAGES=man/*.man
181N/ASUN_PACKAGE=SUNWxwplt
5680N/ALIB_STABILITY=Uncommitted
5680N/ALIB_MAN_SUFFIX=3FS
172N/A
5680N/A# Library built in tree
5680N/ALIB_BUILT=$(SOURCE_DIR)/src/.libs/libFS.so.5
172N/A
172N/A# Link with version mapfile
172N/ALIB_ADD_LD_OPTIONS = -M $(PWD)/mapfile-vers
172N/A
172N/A# pkg-config files that need to have -R added
172N/AFIX_PC_FILES=libfs.pc.in
172N/A
5680N/Ainclude ../Makefile.inc
3817N/A