Makefile revision 156
792N/A###############################################################################
792N/A#
792N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
792N/A# Use subject to license terms.
1097N/A#
792N/A# Permission is hereby granted, free of charge, to any person obtaining a
792N/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
919N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
792N/A#
792N/A# Except as contained in this notice, the name of a copyright holder
792N/A# shall not be used in advertising or otherwise to promote the sale, use
792N/A# or other dealings in this Software without prior written authorization
792N/A# of the copyright holder.
792N/A#
970N/A# @(#)Makefile 1.5 07/05/15
970N/A#
970N/A
970N/APWD:sh=pwd
792N/ATOP=$(PWD)/../..
792N/A
792N/A# Version number (used in path names)
911N/AMESA_VERS=6.5.2
911N/A
911N/A# Source tarball
911N/ASOURCE_TARBALL_NAME=MesaDemos-$(MESA_VERS).tar.bz2
792N/A
792N/A# Download site for source
792N/ASOURCE_URL=$(SF_DOWNLOADS_URL)/mesa3d/$(SOURCE_TARBALL_NAME)
1141N/ASOURCE_URL_SET=yes
1141N/A
792N/A# Patches to apply to source after unpacking, in order
792N/ASOURCE_PATCHES= \
930N/A null-display.patch \
924N/A Xorg-6.9-changes.patch
792N/A
792N/A# Directory created by unpacking source
792N/ASOURCE_DIR=$(BUILD_DIR)/Mesa-$(MESA_VERS)
792N/A
792N/A# Binaries built in tree
792N/AGLXGEARS_BIN=$(SOURCE_DIR)/progs/xdemos/glxgears
792N/AGLXINFO_BIN=$(SOURCE_DIR)/progs/xdemos/glxinfo
792N/A
792N/A# Where to install files
792N/AMESA_prefix=$(PROTODIR)/usr/X11
792N/A
792N/A# What to build
792N/ABUILD_TARGETS=$(GLXGEARS_BIN) $(GLXINFO_BIN)
792N/A
792N/A### Include common rulesets
792N/Ainclude $(TOP)/common/Makefile.inc
792N/A
792N/A### Rules specific to this directory:
792N/A
792N/A# Merge in additional sources from Mesa library sun-src directory
1197N/Asource_gen:: $(LNDIR)
1197N/A mkdir -p $(SOURCE_DIR)
792N/A (cd $(SOURCE_DIR) && $(LNDIR) ../../../../lib/mesa/sun-src)
1196N/A (cd $(SOURCE_DIR)/configs && touch default)
1196N/A
1196N/A# Only care about building X demos
1196N/ADEMOS_DIR=$(SOURCE_DIR)/progs/xdemos
792N/A
792N/A# Mesa config file names
792N/AMESA_CFG_32_sparc=sunos5-v8
792N/AMESA_CFG_64_sparc=sunos5-v9
1097N/AMESA_CFG_32_i386=solaris-x86-cc-dri
1097N/AMESA_CFG_64_i386=solaris-x64-cc-dri
1097N/A
792N/AMESA_CFG_32= $(MESA_CFG_32_$(MACH))
792N/AMESA_CFG_64= $(MESA_CFG_64_$(MACH))
792N/A
792N/ABUILD_32_FLAGS= MESA_CFG=$(MESA_CFG_32)
792N/ABUILD_64_FLAGS= MESA_CFG=$(MESA_CFG_64)
792N/A
792N/A# Build Mesa demos
792N/A$(GLXGEARS_BIN): $(UNPACK_TARGET)
792N/A (cd $(SOURCE_DIR)/configs && rm -f current && ln -s $(MESA_CFG) current)
792N/A (cd $(DEMOS_DIR) && $(MAKE) $(MFLAGS) LDFLAGS="$(PROG_LDFLAGS)" glxgears )
792N/A
792N/A$(GLXINFO_BIN): $(UNPACK_TARGET)
792N/A (cd $(SOURCE_DIR)/configs && rm -f current && ln -s $(MESA_CFG) current)
792N/A (cd $(DEMOS_DIR) && $(MAKE) $(MFLAGS) LDFLAGS="$(PROG_LDFLAGS)" glxinfo )
792N/A
792N/A# For testing - we don't ship the rest of these
792N/Aall-xdemos_gen: $(UNPACK_TARGET)
792N/A (cd $(SOURCE_DIR)/configs && rm -f current && ln -s $(MESA_CFG) current)
792N/A (cd $(DEMOS_DIR) && $(MAKE) $(MFLAGS) LDFLAGS="$(PROG_LDFLAGS)")
792N/A
792N/Aall-xdemos:
792N/A $(MAKE) $(MFLAGS) BUILD_DIR=$(BUILD_DIR_32) ARCH_FLAGS="$(ARCH32_FLAGS)" $(BUILD_32_FLAGS) all-xdemos_gen
792N/A
792N/Ainstall_gen: $(GLXGEARS_BIN) $(GLXINFO_BIN)
792N/A cp -p $(GLXGEARS_BIN) $(GLXINFO_BIN) $(MESA_prefix)/bin
792N/A
792N/A
792N/A