Makefile revision 527
0N/A###############################################################################
0N/A#
0N/A# X11 1.x Makefile
0N/A#
314N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
0N/A# Use subject to license terms.
0N/A#
0N/A# Permission is hereby granted, free of charge, to any person obtaining a
0N/A# copy of this software and associated documentation files (the
0N/A# "Software"), to deal in the Software without restriction, including
0N/A# without limitation the rights to use, copy, modify, merge, publish,
0N/A# distribute, and/or sell copies of the Software, and to permit persons
0N/A# to whom the Software is furnished to do so, provided that the above
0N/A# copyright notice(s) and this permission notice appear in all copies of
0N/A# the Software and that both the above copyright notice(s) and this
0N/A# permission notice appear in supporting documentation.
0N/A#
0N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
0N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
0N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
0N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
0N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
0N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
0N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
0N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
0N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
0N/A#
0N/A# Except as contained in this notice, the name of a copyright holder
0N/A# shall not be used in advertising or otherwise to promote the sale, use
0N/A# or other dealings in this Software without prior written authorization
0N/A# of the copyright holder.
0N/A#
373N/A# @(#)Makefile 1.14 08/08/08
0N/A#
0N/A
364N/A# Package name used in tarballs
364N/AMODULE_NAME=libX11
364N/A
364N/A# Version number (used in path names)
364N/AMODULE_VERSION=1.1.3
364N/A
364N/A# Patches to apply to source after unpacking, in order
156N/ASOURCE_PATCHES = \
156N/A lintlib.patch,-p1 \
0N/A manpages.patch,-p1 \
0N/A XErrorDB.patch,-p1 \
364N/A local-transport.patch,-p1 \
0N/A 1234757.patch \
0N/A 4010755.patch \
156N/A 4614834.patch \
156N/A 5039226.patch \
156N/A 6409332.patch \
0N/A solaris-abi.patch \
0N/A solaris-i18n.patch \
156N/A solaris-kbd.patch \
156N/A SolarisIA.patch \
0N/A sme.patch \
0N/A 4076297.patch \
364N/A 1261271.patch \
364N/A 6686591.patch \
373N/A 6690054.patch \
364N/A 6681985.patch \
364N/A 6691236.patch \
364N/A 6691219.patch \
0N/A 6657999.patch \
156N/A 6715568.patch
156N/A
0N/A# Library name (used for specfiles/mapfiles)
0N/ALIBNAME=X11
0N/A
0N/A# Man pages to apply Sun footer to & attributes to list
156N/ASUNTOUCHED_MANPAGES=man/*.man man/xkb/*.man
156N/ASUN_PACKAGE=SUNWxwplt
156N/AMODULE_STABILITY=Committed
156N/ALIB_MAN_SUFFIX=3X11
156N/A
156N/A# Command line options to GNU autoconf configure script
156N/AMODULE_CONFIG_OPTS = --enable-xthreads --enable-loadable-i18n \
0N/A --with-xcb=no --enable-loadable-xcursor --enable-xcms \
255N/A --enable-xlocaledir --enable-xkb --enable-man-pages=$(LIB_MAN_SUFFIX) \
156N/A --with-locale-lib-dir='$${exec_prefix}/lib/X11/locale$(LIBSUBDIR)'
156N/A
156N/A# -xF is needed for mapfile reordering to work
156N/AMODULE_CFLAGS = -xF
0N/A
0N/A# -DSUNSOFT enables SUN_SME (Shared Memory transport extension)
364N/A# -DMOTIFBC enables compatibility with bugs in Motif & other apps
364N/A# -DSUNSOFT_KBD enables Solaris traditional keyboard handling
364N/AMODULE_CPPFLAGS = -DSUNSOFT -DMOTIFBC -DSUNSOFT_KBD
364N/A
364N/A# Work around libtool's interference
364N/ADELIBTOOLIZE=yes
364N/A
364N/A# Use -KPIC instead of -Kpic because we have too many symbols on SPARC
364N/ADELIBTOOLIZE_FLAGS_sparc = -P
364N/ADELIBTOOLIZE_FLAGS_i386 =
364N/ADELIBTOOLIZE_FLAGS = $(DELIBTOOLIZE_FLAGS_$(MACH))
364N/A
0N/A# Need additional mapfile for additional symbols in 64-bit versions
0N/AMODULE_BUILD_64_FLAGS = ADD_libX11_LDFLAGS="-M $(PWD)/mapfile-vers-64"
0N/A
0N/A# pkg-config files that need to have -R added
0N/AFIX_PC_FILES=x11.pc.in
0N/A
0N/A# Regenerate Makefile.in's from Makefile.am's after patching them
0N/AAUTORECONF=yes
255N/A
156N/A# Merge in additional sources from sun-src directory
364N/AADDITIONAL_SOURCE_DIR=sun-src
364N/A
0N/Ainclude ../Makefile.inc
339N/A
0N/Ainstall_gen::
0N/A mkdir -p $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)
339N/A -rm -f $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)/libX11.so
339N/A ln -s libX11.so.4 $(PROTODIR)/usr/X11/lib$(ARCHLIBSUBDIR)/libX11.so
0N/A
255N/A# Install additional headers we need in other parts of the build or ship in
0N/A# packages, but which X.Org doesn't
255N/Ainstall_32::
0N/A mkdir -p $(PROTODIR)/usr/X11/include/X11/extensions
0N/A cp -pf sun-src/include/X11/Xvarargs.h $(PROTODIR)/usr/X11/include/X11/
0N/A cp -pf sun-src/include/X11/extensions/XInteractive.h \
373N/A $(PROTODIR)/usr/X11/include/X11/extensions/
364N/A cp -pf $(BUILD_DIR_32)$(SOURCE_DIR)/src/ks_tables.h \
364N/A $(PROTODIR)/usr/X11/include/
364N/A cp -pf $(BUILD_DIR_32)$(SOURCE_DIR)/src/xlibi18n/Xlc*.h \
364N/A $(PROTODIR)/usr/X11/include/X11/
364N/A