Makefile revision 258
341N/A#
341N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
341N/A# Use subject to license terms.
341N/A#
910N/A# Permission is hereby granted, free of charge, to any person obtaining a
810N/A# copy of this software and associated documentation files (the
341N/A# "Software"), to deal in the Software without restriction, including
341N/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
919N/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.
919N/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,
919N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
919N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
919N/A#
919N/A# Except as contained in this notice, the name of a copyright holder
341N/A# shall not be used in advertising or otherwise to promote the sale, use
341N/A# or other dealings in this Software without prior written authorization
341N/A# of the copyright holder.
341N/A#
493N/A# @(#)Makefile 1.6 07/05/15
341N/A#
341N/A
851N/APWD:sh=pwd
341N/ATOP=$(PWD)/../..
911N/A
911N/ABUILD_TYPES=32 64
911N/ABUILD_TYPES_SET=yes
911N/A
341N/A# Package name used in tarballs
341N/ALIB_MODULE=libdrm
851N/A
341N/A# Version number (used in path names)
341N/ALIB_VERS=2.3.0
341N/A
341N/A# Library name (used for specfiles/mapfiles)
341N/ALIBNAME=drm
341N/A
341N/A# Man pages to apply Sun footer to & attributes to list
341N/A#SUNTOUCHED_MANPAGES=*.man
392N/A#SUN_PACKAGE=SUNWxorg-server
604N/A#LIB_STABILITY=Volatile
646N/A#LIB_MAN_SUFFIX=3drm
812N/A
688N/A# Library built in tree
688N/ALIB_BUILT=$(BUILD_DIR)/.libs/libdrm.so.6.0.0
688N/A
688N/A# pkg-config files that need to have -R added
688N/AFIX_PC_FILES=libdrm.pc.in
688N/A
688N/A########################################################################
688N/A
688N/A# Source tarball
688N/ASOURCE_TARBALL_NAME=$(LIB_MODULE)-$(LIB_VERS).tar.bz2
688N/A
688N/A# Download site for source
688N/ASOURCE_URL=http://dri.freedesktop.org/libdrm/$(SOURCE_TARBALL_NAME)
688N/ASOURCE_URL_SET=yes
688N/A
688N/A# Directory created by unpacking source
688N/ASOURCE_DIR=$(BUILD_DIR)/$(LIB_MODULE)-$(LIB_VERS)
688N/A
688N/A# Patches to apply to source after unpacking, in order
688N/ASOURCE_PATCHES = solaris-drm-port.patch
688N/A
688N/ASUNTOUCH_MAN_FLAGS= -l $(LIBNAME) \
688N/A-a '{Availability, $(SUN_PACKAGE)} {Interface Stability, $(LIB_STABILITY)} {MT-Level, See XInitThreads(3X11)}' $(LIB_SUNTOUCH_MAN_FLAGS)
688N/A
688N/Ainclude $(TOP)/common/Makefile.inc
688N/A
688N/A# Where to install files
851N/ALIB_prefix=$(X11_DIR)
688N/ALIB_ADD_SUBDIR=$(X11_SERVERLIBS_SUBDIR)
688N/A
688N/A# Command line options to GNU autoconf configure script
688N/ACONFIG_OPTS = --enable-shared=yes --enable-static=no \
688N/A --prefix=$(LIB_prefix) --mandir='$${prefix}/share/man' \
688N/A --libdir='$${exec_prefix}/lib$(LIB_ADD_SUBDIR)$(LIBSUBDIR)' \
688N/A $(LIB_ADD_CONFIG_OPTS)
688N/A
688N/A# Environment variable options to GNU autoconf configure script
688N/ATHIS_LIB_CFLAGS=$(LIB_CFLAGS) -I$(PROTODIR)/usr/X11/include $(LIB_ADD_CFLAGS)
688N/A
688N/ABUILD_32_FLAGS=ARCH_GCC_FLAGS="$(ARCH32_GCC_FLAGS)"
688N/ABUILD_64_FLAGS=ARCH_GCC_FLAGS="$(ARCH64_GCC_FLAGS)"
688N/A
688N/ACONFIG_ENV = CC=gcc CFLAGS="$(DEFAULT_GCC_CFLAGS) $(ARCH_GCC_FLAGS)" \
816N/A LDFLAGS="$(GCC_LIB_LDFLAGS)" \
875N/A PKG_CONFIG_PATH=$(PROTODIR)/usr/lib$(ARCHLIBSUBDIR)/pkgconfig:$(TOP)/common/pc-files/$(BUILD_DIR) \
875N/A INSTALL="$(TOP)/common/install-sh -c" CPPROG="cp -p" \
341N/A LIB_MAN_SUFFIX=$(LIB_MAN_SUFFIX)
341N/A
341N/A# Run configure script
341N/A$(SOURCE_DIR)/Makefile: $(UNPACK_TARGET) $(XPROTO_DEP)
341N/A (cd $(SOURCE_DIR) ; chmod a+x configure ; \
341N/A $(CONFIG_ENV) ./configure $(CONFIG_OPTS) )
341N/A
493N/Abuild_gen: $(LIB_BUILT)
341N/A
341N/A$(LIB_BUILT): $(SOURCE_DIR)/Makefile $(LIB_ADD_BUILD_DEPS)
341N/A (cd $(SOURCE_DIR) ; LD_OPTIONS="$(LIB_REQUIRED_LDFLAGS) $(LIB_ADD_LD_OPTIONS)" $(MAKE) $(MFLAGS) )
493N/A
851N/A
341N/Ainstall_gen: $(LIB_BUILT)
341N/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)
341N/A