Makefile revision 744
98N/A# Makefile for X Consolidation Open Source Library modules
98N/A#
287N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
98N/A# Use is 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#
499N/A# @(#)Makefile 1.29 09/07/10
98N/A#
98N/A###############################################################################
98N/A
354N/A# Order copied from X.Org's util/modular/build.sh:
354N/A# the libraries have a dependency order:
354N/A# xtrans, Xau, Xdmcp before anything else
354N/A# fontenc before Xfont
354N/A# ICE before SM
354N/A# X11 before Xext
354N/A# (X11 and SM) before Xt
354N/A# Xt before Xmu and Xpm and Xtst
354N/A# Xext before any other extension library, including mesa
354N/A# Xfixes before Xcomposite
354N/A# Xp before XprintUtil before XprintAppUtil
354N/A# libpthread-stubs before libdrm (and in the future, before xcb)
98N/A# libdrm before mesa
98N/A
98N/AOS_SUBDIRS_common = \
98N/A freetype \
98N/A fontconfig \
98N/A libpthread-stubs \
341N/A libxtrans \
366N/A libXau \
354N/A libXdmcp \
425N/A libX11 \
325N/A libXext \
456N/A libfontenc \
325N/A libFS \
354N/A libICE \
278N/A liblbxutil \
98N/A libpciaccess \
98N/A libSM \
98N/A libXt \
151N/A libXmu \
137N/A libXpm \
153N/A libXp \
210N/A libXaw \
366N/A libXfixes \
98N/A libXcomposite \
179N/A libXrender \
269N/A libXdamage \
126N/A libXcursor \
98N/A libXevie \
98N/A libXfont \
98N/A libXft \
287N/A libXi \
366N/A libXinerama \
499N/A libxkbfile \
123N/A libxkbui \
98N/A libXrandr \
98N/A libXres \
98N/A libXScrnSaver \
98N/A libXtsol \
498N/A libXtst \
498N/A libXv \
98N/A libXvMC \
98N/A libXxf86misc \
98N/A libXxf86vm \
98N/A libXlg3d \
98N/A pixman \
98N/A hwc
98N/A
493N/AOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
493N/A
98N/AOS_SUBDIRS_i386 = $(OS_SUBDIRS_common) \
493N/A libdrm \
493N/A mesa
493N/A
OBSOLETE_SUBDIRS = \
libXprintUtil \
libXprintAppUtil
PWD:sh=pwd
TOP=$(PWD)/..
### Include common definitions
DIRNAME="lib/"
include $(TOP)/common/Makefile.subdirs