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