Makefile revision 347
98N/A#
0N/A# Copyright 2007 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.
98N/A#
0N/A# @(#)Makefile 1.6 07/05/15
0N/A#
0N/A
0N/APWD:sh=pwd
0N/ATOP=$(PWD)/../..
0N/A
0N/ABUILD_TYPES=32 64
0N/ABUILD_TYPES_SET=yes
0N/A
0N/A# Package name used in tarballs
0N/ALIB_MODULE=libdrm
0N/A
0N/A# Version number (used in path names)
0N/ALIB_VERS=2.3.0
0N/A
0N/A# Library name (used for specfiles/mapfiles)
98N/ALIBNAME=drm
0N/A
0N/A# Man pages to apply Sun footer to & attributes to list
0N/A#SUNTOUCHED_MANPAGES=*.man
0N/A#SUN_PACKAGE=SUNWxorg-server
0N/A#LIB_STABILITY=Volatile
0N/A#LIB_MAN_SUFFIX=3drm
0N/A
0N/A# Library built in tree
98N/ALIB_BUILT=$(BUILD_DIR)/.libs/libdrm.so.6.0.0
98N/A
0N/A# pkg-config files that need to have -R added
98N/AFIX_PC_FILES=libdrm.pc.in
0N/A
0N/A########################################################################
0N/A
0N/A# Source tarball
0N/ASOURCE_TARBALL_NAME=$(LIB_MODULE)-$(LIB_VERS).tar.bz2
0N/A
0N/A# Download site for source
0N/ASOURCE_URL=http://dri.freedesktop.org/libdrm/$(SOURCE_TARBALL_NAME)
0N/ASOURCE_URL_SET=yes
0N/A
98N/A# Directory created by unpacking source
0N/ASOURCE_DIR=$(BUILD_DIR)/$(LIB_MODULE)-$(LIB_VERS)
0N/A
0N/A# Patches to apply to source after unpacking, in order
0N/ASOURCE_PATCHES = solaris-drm-port.patch
0N/A
0N/ASUNTOUCH_MAN_FLAGS= -l $(LIBNAME) \
0N/A-a '{Availability, $(SUN_PACKAGE)} {Interface Stability, $(LIB_STABILITY)} {MT-Level, See XInitThreads(3X11)}' $(LIB_SUNTOUCH_MAN_FLAGS)
0N/A
0N/Ainclude $(TOP)/common/Makefile.inc
0N/A
0N/A# Where to install files
0N/ALIB_prefix=$(X11_DIR)
0N/ALIB_ADD_SUBDIR=$(X11_SERVERLIBS_SUBDIR)
0N/A
0N/A# Command line options to GNU autoconf configure script
0N/ACONFIG_OPTS = --enable-shared=yes --enable-static=no \
0N/A --prefix=$(LIB_prefix) --mandir='$${prefix}/share/man' \
0N/A --libdir='$${exec_prefix}/lib$(LIB_ADD_SUBDIR)$(LIBSUBDIR)' \
0N/A $(LIB_ADD_CONFIG_OPTS)
0N/A
0N/A# Environment variable options to GNU autoconf configure script
0N/ATHIS_LIB_CFLAGS=$(LIB_CFLAGS) -I$(PROTODIR)/usr/X11/include $(LIB_ADD_CFLAGS)
0N/A
0N/ABUILD_32_FLAGS=ARCH_GCC_FLAGS="$(ARCH32_GCC_FLAGS)"
0N/ABUILD_64_FLAGS=ARCH_GCC_FLAGS="$(ARCH64_GCC_FLAGS)"
0N/A
0N/ACONFIG_ENV = CC=gcc CFLAGS="$(DEFAULT_GCC_CFLAGS) $(ARCH_GCC_FLAGS)" \
0N/A LDFLAGS="$(GCC_LIB_LDFLAGS)" \
0N/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" \
0N/A LIB_MAN_SUFFIX=$(LIB_MAN_SUFFIX)
0N/A
0N/A# Run configure script
0N/A$(SOURCE_DIR)/Makefile: $(UNPACK_TARGET) $(XPROTO_DEP)
0N/A (cd $(SOURCE_DIR) ; chmod a+x configure ; \
0N/A $(CONFIG_ENV) ./configure $(CONFIG_OPTS) )
0N/A
0N/Abuild_gen: $(LIB_BUILT)
0N/A
0N/A$(LIB_BUILT): $(SOURCE_DIR)/Makefile $(LIB_ADD_BUILD_DEPS)
0N/A (cd $(SOURCE_DIR) ; LD_OPTIONS="$(LIB_REQUIRED_LDFLAGS) $(LIB_ADD_LD_OPTIONS)" $(MAKE) $(MFLAGS) )
0N/A
0N/A
0N/Ainstall_gen: $(LIB_BUILT)
0N/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)
0N/A