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