Makefile revision 504
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# Makefile for X Consolidation Open Source utility modules
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson#
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# Use subject to license terms.
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson#
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# Permission is hereby granted, free of charge, to any person obtaining a
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# copy of this software and associated documentation files (the
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# "Software"), to deal in the Software without restriction, including
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# without limitation the rights to use, copy, modify, merge, publish,
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# distribute, and/or sell copies of the Software, and to permit persons
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# to whom the Software is furnished to do so, provided that the above
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# copyright notice(s) and this permission notice appear in all copies of
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# the Software and that both the above copyright notice(s) and this
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# permission notice appear in supporting documentation.
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson#
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson#
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# Except as contained in this notice, the name of a copyright holder
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# shall not be used in advertising or otherwise to promote the sale, use
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# or other dealings in this Software without prior written authorization
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# of the copyright holder.
2467af48fef0a0e2a62f2ddf6400f91ee3b0f01eneil_a_wilson#
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# @(#)Makefile 1.2 08/08/11
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson#
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergara###############################################################################
27f8adec83293fb8bd3bfa37175322b0ee3bb933jvergara
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# These module directories are not listed here on purpose:
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# util-macros - has to be the very first, built in top-level Makefile
3ec8ffa3cd3bf9f3ed0d3f3ddb73b28a99b79f62neil_a_wilson# build-tools - nothing to build
# mdb-tools - must be built after X servers, not built/shipped by default,
# here for developers to build as needed
OS_SUBDIRS_common = \
lndir \
imake \
makedepend \
xorg-cf-files
OS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
OS_SUBDIRS_i386 = $(OS_SUBDIRS_common)
PWD:sh=pwd
TOP=$(PWD)/..
### Include common definitions
DIRNAME="util/"
include $(TOP)/common/Makefile.subdirs