Makefile revision 498
130N/A# Makefile for X Consolidation Open Source Library modules
130N/A#
130N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
130N/A# Use subject to license terms.
130N/A#
130N/A# Permission is hereby granted, free of charge, to any person obtaining a
130N/A# copy of this software and associated documentation files (the
130N/A# "Software"), to deal in the Software without restriction, including
130N/A# without limitation the rights to use, copy, modify, merge, publish,
130N/A# distribute, and/or sell copies of the Software, and to permit persons
130N/A# to whom the Software is furnished to do so, provided that the above
130N/A# copyright notice(s) and this permission notice appear in all copies of
130N/A# the Software and that both the above copyright notice(s) and this
130N/A# permission notice appear in supporting documentation.
130N/A#
130N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
130N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
130N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
130N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
130N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
2354N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
130N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
130N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
130N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1244N/A#
130N/A# Except as contained in this notice, the name of a copyright holder
1244N/A# shall not be used in advertising or otherwise to promote the sale, use
1244N/A# or other dealings in this Software without prior written authorization
130N/A# of the copyright holder.
130N/A#
135N/A# @(#)Makefile 1.22 08/08/12
135N/A#
844N/A###############################################################################
844N/A
618N/A# Order copied from X.Org's util/modular/build.sh:
1258N/A# the libraries have a dependency order:
130N/A# xtrans, Xau, Xdmcp before anything else
2899N/A# fontenc before Xfont
2899N/A# ICE before SM
130N/A# X11 before Xext
130N/A# (X11 and SM) before Xt
130N/A# Xt before Xmu and Xpm and Xtst
181N/A# Xext before any other extension library
130N/A# Xfixes before Xcomposite
130N/A# Xp before XprintUtil before XprintAppUtil
130N/A
130N/AOS_SUBDIRS_common = \
130N/A freetype \
130N/A fontconfig \
130N/A libxtrans \
130N/A libXau \
130N/A libXdmcp \
3536N/A libX11 \
3536N/A libXext \
3536N/A libfontenc \
3536N/A libFS \
130N/A libICE \
130N/A liblbxutil \
130N/A libSM \
130N/A libXt \
130N/A libXmu \
130N/A libXpm \
130N/A libXaw \
130N/A libXfixes \
130N/A libXcomposite \
130N/A libXrender \
729N/A libXdamage \
130N/A libXcursor \
3536N/A libXevie \
3536N/A libXfont \
3536N/A libXft \
3536N/A libXi \
3536N/A libXinerama \
3536N/A libxkbfile \
2354N/A libxkbui \
2354N/A libXrandr \
3477N/A libXres \
3477N/A libXScrnSaver \
130N/A libXtst \
130N/A libXv \
130N/A libXvMC \
130N/A libXxf86misc \
3536N/A libXxf86vm \
130N/A libXlg3d \
130N/A hwc
130N/A
130N/AOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
130N/A
OS_SUBDIRS_i386 = $(OS_SUBDIRS_common) \
libdrm \
mesa
PWD:sh=pwd
TOP=$(PWD)/..
### Include common definitions
DIRNAME="lib/"
include $(TOP)/common/Makefile.subdirs