Makefile revision 371
830N/A#
830N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
830N/A# Use subject to license terms.
830N/A#
919N/A# Permission is hereby granted, free of charge, to any person obtaining a
919N/A# copy of this software and associated documentation files (the
919N/A# "Software"), to deal in the Software without restriction, including
919N/A# without limitation the rights to use, copy, modify, merge, publish,
919N/A# distribute, and/or sell copies of the Software, and to permit persons
830N/A# to whom the Software is furnished to do so, provided that the above
919N/A# copyright notice(s) and this permission notice appear in all copies of
919N/A# the Software and that both the above copyright notice(s) and this
919N/A# permission notice appear in supporting documentation.
830N/A#
919N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
919N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
919N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
919N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
919N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
919N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
919N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
830N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
830N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
830N/A#
830N/A# Except as contained in this notice, the name of a copyright holder
830N/A# shall not be used in advertising or otherwise to promote the sale, use
830N/A# or other dealings in this Software without prior written authorization
830N/A# of the copyright holder.
830N/A#
830N/A# @(#)Makefile 1.7 08/03/07
830N/A#
830N/A
830N/APWD:sh=pwd
830N/ATOP=$(PWD)/../..
830N/A
830N/ABUILD_TYPES=32 64
830N/ABUILD_TYPES_SET=yes
830N/A
830N/A# Package name used in tarballs
830N/ALIB_MODULE=libdrm
830N/A
830N/A# Version number (used in path names)
830N/ALIB_VERS=2.3.0
830N/A
830N/A# Library name (used for specfiles/mapfiles)
830N/ALIBNAME=drm
830N/A
830N/A# Man pages to apply Sun footer to & attributes to list
830N/A#SUNTOUCHED_MANPAGES=*.man
830N/A#SUN_PACKAGE=SUNWxorg-server
830N/A#LIB_STABILITY=Volatile
830N/A#LIB_MAN_SUFFIX=3drm
830N/A
830N/A# Library built in tree
830N/ALIB_BUILT=$(BUILD_DIR)/.libs/libdrm.so.6.0.0
830N/A
830N/A# pkg-config files that need to have -R added
830N/AFIX_PC_FILES=libdrm.pc.in
830N/A
830N/A########################################################################
830N/A
830N/A# Source tarball
830N/ASOURCE_TARBALL_NAME=$(LIB_MODULE)-$(LIB_VERS).tar.bz2
830N/A
830N/A# Download site for source
830N/ASOURCE_URL=http://dri.freedesktop.org/libdrm/$(SOURCE_TARBALL_NAME)
830N/ASOURCE_URL_SET=yes
830N/A
830N/A# Directory created by unpacking source
830N/ASOURCE_DIR=$(BUILD_DIR)/$(LIB_MODULE)-$(LIB_VERS)
830N/A
830N/A# Patches to apply to source after unpacking, in order
830N/ASOURCE_PATCHES = solaris-drm-port.patch
830N/A
830N/ASUNTOUCH_MAN_FLAGS= -l $(LIBNAME) \
830N/A-a '{Availability, $(SUN_PACKAGE)} {Interface Stability, $(LIB_STABILITY)} {MT-Level, See XInitThreads(3X11)}' $(LIB_SUNTOUCH_MAN_FLAGS)
830N/A
830N/Ainclude $(TOP)/common/Makefile.inc
830N/A
830N/A# Where to install files
830N/ALIB_prefix=$(X11_DIR)
830N/ALIB_ADD_SUBDIR=$(X11_SERVERLIBS_SUBDIR)
830N/A
830N/A# Command line options to GNU autoconf configure script
830N/ACONFIG_OPTS = --enable-shared=yes --enable-static=no \
830N/A --prefix=$(LIB_prefix) --mandir='$${prefix}/share/man' \
830N/A --libdir='$${exec_prefix}/lib$(LIB_ADD_SUBDIR)$(LIBSUBDIR)' \
830N/A $(LIB_ADD_CONFIG_OPTS)
830N/A
830N/A# Environment variable options to GNU autoconf configure script
830N/ATHIS_LIB_CFLAGS=$(LIB_CFLAGS) -I$(PROTODIR)/usr/X11/include $(LIB_ADD_CFLAGS)
830N/A
830N/ABUILD_32_FLAGS=ARCH_GCC_FLAGS="$(ARCH32_GCC_FLAGS)"
830N/ABUILD_64_FLAGS=ARCH_GCC_FLAGS="$(ARCH64_GCC_FLAGS)"
830N/A
830N/ACONFIG_ENV = CC=gcc CFLAGS="$(DEFAULT_GCC_CFLAGS) $(ARCH_GCC_FLAGS)" \
830N/A LDFLAGS="$(GCC_LIB_LDFLAGS)" \
830N/A PKG_CONFIG_PATH=$(PROTODIR)/usr/lib$(ARCHLIBSUBDIR)/pkgconfig:$(TOP)/common/pc-files/$(BUILD_DIR) \
830N/A INSTALL="$(TOP)/common/install-sh -c" CPPROG="cp -p" \
830N/A LIB_MAN_SUFFIX=$(LIB_MAN_SUFFIX)
830N/A
830N/A# Run configure script
830N/A$(SOURCE_DIR)/Makefile: $(UNPACK_TARGET) $(XPROTO_DEP)
830N/A (cd $(SOURCE_DIR) ; chmod a+x configure ; \
830N/A $(CONFIG_ENV) ./configure $(CONFIG_OPTS) )
830N/A
830N/Abuild_gen: $(LIB_BUILT)
830N/A
830N/A$(LIB_BUILT): $(SOURCE_DIR)/Makefile $(LIB_ADD_BUILD_DEPS)
830N/A (cd $(SOURCE_DIR) ; LD_OPTIONS="$(LIB_REQUIRED_LDFLAGS) $(LIB_ADD_LD_OPTIONS)" $(MAKE) $(MFLAGS) )
830N/A
830N/A
830N/Ainstall_gen:: $(LIB_BUILT)
830N/A (cd $(SOURCE_DIR) ; $(LIBPATHS) LD_OPTIONS="$(LIB_REQUIRED_LDFLAGS) $(LIB_ADD_LD_OPTIONS)" $(MAKE) $(MFLAGS) -e DESTDIR=$(PROTODIR) libdir=$(LIB_prefix)/lib$(LIB_ADD_SUBDIR)$(ARCHLIBSUBDIR) install pkgconfigdir=/usr/lib$(ARCHLIBSUBDIR)/pkgconfig)
830N/A