Makefile revision 98
98N/A###############################################################################
98N/A#
98N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
98N/A# Use subject to license terms.
98N/A#
98N/A# Permission is hereby granted, free of charge, to any person obtaining a
98N/A# copy of this software and associated documentation files (the
98N/A# "Software"), to deal in the Software without restriction, including
98N/A# without limitation the rights to use, copy, modify, merge, publish,
98N/A# distribute, and/or sell copies of the Software, and to permit persons
98N/A# to whom the Software is furnished to do so, provided that the above
98N/A# copyright notice(s) and this permission notice appear in all copies of
98N/A# the Software and that both the above copyright notice(s) and this
98N/A# permission notice appear in supporting documentation.
98N/A#
98N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
98N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
98N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
98N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
98N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
98N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
98N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
98N/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
98N/A# or other dealings in this Software without prior written authorization
98N/A# of the copyright holder.
98N/A#
98N/A# @(#)Makefile 1.4 07/01/31
98N/A#
98N/A
98N/APWD:sh=pwd
98N/ATOP=$(PWD)/../..
98N/A
98N/A# Build 32-bit, 64-bit, or both?
98N/ABUILD_TYPES=32
98N/A
98N/A# Version number (used in path names)
98N/AMESA_VERS=6.5.2
98N/A
98N/A# Source tarball
98N/ASOURCE_TARBALL_NAME=MesaDemos-$(MESA_VERS).tar.bz2
98N/A
98N/A# Download site for source
98N/ASOURCE_URL=http://easynews.dl.sourceforge.net/sourceforge/mesa3d/$(SOURCE_TARBALL_NAME)
98N/A
98N/A# Patches to apply to source after unpacking, in order
98N/ASOURCE_PATCHES= \
98N/A null-display.patch \
98N/A Xorg-6.9-changes.patch
98N/A
98N/A# Directory created by unpacking source
98N/ASOURCE_DIR=$(BUILD_DIR)/Mesa-$(MESA_VERS)
98N/A
98N/A# Binaries built in tree
98N/AGLXGEARS_BIN=$(SOURCE_DIR)/progs/xdemos/glxgears
98N/AGLXINFO_BIN=$(SOURCE_DIR)/progs/xdemos/glxinfo
98N/A
98N/A# Where to install files
98N/AMESA_prefix=$(PROTODIR)/usr/X11
98N/A
98N/A# What to build
98N/ABUILD_TARGETS=$(GLXGEARS_BIN) $(GLXINFO_BIN)
98N/A
98N/A### Include common rulesets
98N/Ainclude $(TOP)/common/Makefile.inc
98N/A
98N/A### Rules specific to this directory:
98N/A
98N/A# Merge in additional sources from Mesa library sun-src directory
98N/Asource_gen:: $(LNDIR)
98N/A mkdir -p $(SOURCE_DIR)
98N/A (cd $(SOURCE_DIR) && $(LNDIR) ../../../../lib/mesa/sun-src)
98N/A (cd $(SOURCE_DIR)/configs && touch default)
98N/A
98N/A# Only care about building X demos
98N/ADEMOS_DIR=$(SOURCE_DIR)/progs/xdemos
98N/A
98N/A# Mesa config file names
98N/AMESA_CFG_32_sun4=sunos5-v8
98N/AMESA_CFG_64_sun4=sunos5-v9
98N/AMESA_CFG_32_i86pc=solaris-x86-cc-dri
98N/AMESA_CFG_64_i86pc=solaris-x64-cc-dri
98N/A
98N/AMESA_CFG_32:sh=arch | sed 's/^\(.*\)$/\$\(MESA_CFG_32_\1\)/'
98N/AMESA_CFG_64:sh=arch | sed 's/^\(.*\)$/\$\(MESA_CFG_64_\1\)/'
98N/A
98N/ABUILD_32_FLAGS= MESA_CFG=$(MESA_CFG_32)
98N/ABUILD_64_FLAGS= MESA_CFG=$(MESA_CFG_64)
98N/A
98N/A# Build Mesa demos
98N/A$(GLXGEARS_BIN): $(UNPACK_TARGET)
98N/A (cd $(SOURCE_DIR)/configs && rm -f current && ln -s $(MESA_CFG) current)
98N/A (cd $(DEMOS_DIR) && $(MAKE) $(MFLAGS) LDFLAGS="$(PROG_LDFLAGS)" glxgears )
98N/A
98N/A$(GLXINFO_BIN): $(UNPACK_TARGET)
98N/A (cd $(SOURCE_DIR)/configs && rm -f current && ln -s $(MESA_CFG) current)
98N/A (cd $(DEMOS_DIR) && $(MAKE) $(MFLAGS) LDFLAGS="$(PROG_LDFLAGS)" glxinfo )
98N/A
98N/A# For testing - we don't ship the rest of these
98N/Aall-xdemos_gen: $(UNPACK_TARGET)
98N/A (cd $(SOURCE_DIR)/configs && rm -f current && ln -s $(MESA_CFG) current)
98N/A (cd $(DEMOS_DIR) && $(MAKE) $(MFLAGS) LDFLAGS="$(PROG_LDFLAGS)")
98N/A
98N/Aall-xdemos:
98N/A $(MAKE) $(MFLAGS) BUILD_DIR=$(BUILD_DIR_32) ARCH_FLAGS="$(ARCH32_FLAGS)" $(BUILD_32_FLAGS) all-xdemos_gen
98N/A
98N/Ainstall_gen: $(GLXGEARS_BIN) $(GLXINFO_BIN)
98N/A cp -p $(GLXGEARS_BIN) $(GLXINFO_BIN) $(MESA_prefix)/bin
98N/A
98N/A