Makefile revision 281
224N/A###############################################################################
224N/A#
224N/A# Xmu 1.x Makefile
224N/A#
224N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
224N/A# Use subject to license terms.
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
224N/A# "Software"), to deal in the Software without restriction, including
224N/A# without limitation the rights to use, copy, modify, merge, publish,
224N/A# distribute, and/or sell copies of the Software, and to permit persons
224N/A# to whom the Software is furnished to do so, provided that the above
224N/A# copyright notice(s) and this permission notice appear in all copies of
224N/A# the Software and that both the above copyright notice(s) and this
224N/A# permission notice appear in supporting documentation.
224N/A#
224N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
224N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
224N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
844N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
224N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
224N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
224N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
224N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
597N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
597N/A#
224N/A# Except as contained in this notice, the name of a copyright holder
224N/A# shall not be used in advertising or otherwise to promote the sale, use
618N/A# or other dealings in this Software without prior written authorization
224N/A# of the copyright holder.
844N/A#
844N/A# @(#)Makefile 1.2 08/01/17
844N/A#
224N/A
224N/A# Package name used in tarballs
224N/ALIB_MODULE=libXmu
224N/A
224N/A# Version number (used in path names)
224N/ALIB_VERS=1.0.4
224N/A
224N/A# Patches to apply to source after unpacking, in order
224N/ASOURCE_PATCHES = \
224N/A bitmap-path.patch \
224N/A solaris-abi.patch
224N/A
224N/A# Library name (used for specfiles/mapfiles)
224N/ALIBNAME=Xmu
224N/A
224N/A# Man pages to apply Sun footer to & attributes to list
224N/A#SUNTOUCHED_MANPAGES= no man pages in upstream package
224N/ASUN_PACKAGE=SUNWxwplt
224N/ALIB_STABILITY=Committed
224N/ALIB_MAN_SUFFIX=3Xmu
224N/A
224N/A# Library built in tree
224N/ALIB_BUILT=$(SOURCE_DIR)/src/libXmu.so.4
224N/A
224N/A# pkg-config files that need to have -R added
224N/AFIX_PC_FILES=xmu.pc.in xmuu.pc.in
224N/A
224N/A# Command line options to GNU autoconf configure script
224N/ALIB_ADD_CONFIG_OPTS = --with-lint --enable-lint-library
224N/A
224N/A# Work around libtool brokenness that adds -R `pwd` to libXmu build
224N/ALIB_ADD_BUILD_DEPS=delibtoolize
224N/A
224N/Adelibtoolize:
224N/A $(TOP)/common/delibtoolize.pl $(SOURCE_DIR)
224N/A
224N/Ainclude ../Makefile.inc
224N/A
224N/A# Regenerate Makefile.in's from Makefile.am's after patching them
224N/A$(SOURCE_DIR)/Makefile: $(UNPACK_TARGET) autoreconf
224N/A
224N/A# Add-in Sun-added source files
224N/Asource_gen::
224N/A mkdir -p $(SOURCE_DIR)/src $(SOURCE_DIR)/include/X11/Xmu/
224N/A (cd $(SOURCE_DIR)/src ; ln -s ../../../sun-src/*.c .)
224N/A (cd $(SOURCE_DIR)/include/X11/Xmu ; ln -s ../../../../../sun-src/*.h .)
224N/A
224N/A# Additional files we need to install
224N/ACP = cp -pf
224N/AMANDIR = $(PROTODIR)/usr/X11/share/man/man3Xmu
224N/A
224N/Ainstall_gen::
224N/A mkdir -p $(PROTODIR)/usr/X11/include/X11/Xmu $(MANDIR) \
224N/A $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)
224N/A $(CP) $(SOURCE_DIR)/include/X11/Xmu/XmuSolaris.h \
224N/A $(SOURCE_DIR)/include/X11/Xmu/WhitePoint.h \
224N/A $(PROTODIR)/usr/X11/include/X11/Xmu
224N/A $(CP) sun-src/*.3Xmu $(MANDIR)
224N/A ln -s libXmu.so.4 $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)/libXmu.so
224N/A ln -s libXmuu.so.1 $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)/libXmuu.so
224N/A