Makefile revision 851
829N/A###############################################################################
6321N/A#
829N/A# libXi Makefile
829N/A#
829N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
829N/A# Use is subject to license terms.
2362N/A#
829N/A# Permission is hereby granted, free of charge, to any person obtaining a
2362N/A# copy of this software and associated documentation files (the
829N/A# "Software"), to deal in the Software without restriction, including
829N/A# without limitation the rights to use, copy, modify, merge, publish,
829N/A# distribute, and/or sell copies of the Software, and to permit persons
829N/A# to whom the Software is furnished to do so, provided that the above
829N/A# copyright notice(s) and this permission notice appear in all copies of
829N/A# the Software and that both the above copyright notice(s) and this
829N/A# permission notice appear in supporting documentation.
829N/A#
829N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
829N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
829N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
2362N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
2362N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
2362N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
829N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
829N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
829N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
829N/A#
829N/A# Except as contained in this notice, the name of a copyright holder
829N/A# shall not be used in advertising or otherwise to promote the sale, use
829N/A# or other dealings in this Software without prior written authorization
829N/A# of the copyright holder.
829N/A#
829N/A# ident "@(#)Makefile 1.5 09/12/05 SMI"
829N/A#
829N/A
829N/A# Package name used in tarballs
829N/AMODULE_NAME=libXi
829N/A
6321N/A# Version number (used in path names)
829N/AMODULE_VERSION=1.3
6321N/A
6321N/A# Patches to apply to source after unpacking, in order
6321N/ASOURCE_PATCHES = \
6321N/A man.patch,-p1 \
6321N/A solaris-abi.patch
6321N/A
6321N/A# Need to autoreconf after patching man/Makefile.am in man.patch
6321N/AAUTORECONF = yes
6321N/A
6321N/A# Library name (used for specfiles/mapfiles)
829N/ALIBNAME=Xi
829N/A
829N/A# Man pages to apply Sun footer to & attributes to list
829N/ASUNTOUCHED_MANPAGES=man/*.man
829N/ASUN_PACKAGE=SUNWxwplt
829N/AMODULE_STABILITY=Committed
829N/ALIB_MAN_SUFFIX=3Xi
829N/A
829N/A# Use specfile to make mapfile & link with it
829N/AMODULE_BUILD_DEPS = $(BUILD_DIR)/$(SPECMAP)
829N/AMODULE_LD_OPTIONS = -M $(PWD)/$(BUILD_DIR)/$(SPECMAP)
829N/A
829N/A# pkg-config files that need to have -R added
829N/AFIX_PC_FILES=xi.pc.in
829N/A
829N/A# Need to use GNU Make to build
829N/AMODULE_MAKE=$(GNUMAKE)
829N/AMODULE_MAKE_SET=yes
829N/AMODULE_MAKEFLAGS=-j 1
829N/A
829N/Ainclude ../Makefile.inc
829N/A