Makefile revision 126
341N/A# Makefile for X Consolidation Open Source Library modules
341N/A#
341N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
341N/A# Use subject to license terms.
688N/A#
810N/A# Permission is hereby granted, free of charge, to any person obtaining a
341N/A# copy of this software and associated documentation files (the
341N/A# "Software"), to deal in the Software without restriction, including
341N/A# without limitation the rights to use, copy, modify, merge, publish,
341N/A# distribute, and/or sell copies of the Software, and to permit persons
341N/A# to whom the Software is furnished to do so, provided that the above
341N/A# copyright notice(s) and this permission notice appear in all copies of
341N/A# the Software and that both the above copyright notice(s) and this
341N/A# permission notice appear in supporting documentation.
341N/A#
341N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
341N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
341N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
341N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
341N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
341N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
341N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
341N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
341N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
341N/A#
341N/A# Except as contained in this notice, the name of a copyright holder
341N/A# shall not be used in advertising or otherwise to promote the sale, use
341N/A# or other dealings in this Software without prior written authorization
341N/A# of the copyright holder.
341N/A#
341N/A# @(#)Makefile 1.3 07/03/15
341N/A#
816N/A###############################################################################
341N/A
341N/AOS_SUBDIRS_common = \
341N/A freetype \
493N/A fontconfig \
341N/A libxtrans \
341N/A libXau \
688N/A libXdmcp \
341N/A libfontenc \
341N/A libXpm \
341N/A libXaw \
688N/A libXfixes \
688N/A libXfont \
341N/A Xft \
341N/A libXinerama \
341N/A libxkbfile \
341N/A libxkbui \
341N/A libXrandr \
341N/A libXtst \
341N/A libXv \
341N/A libXvMC \
392N/A libXxf86misc \
604N/A libXxf86vm \
646N/A libXlg3d
812N/A
688N/AOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
688N/A
688N/AOS_SUBDIRS_i386 = $(OS_SUBDIRS_common) \
688N/A libdrm \
688N/A mesa
688N/A
688N/AOS_SUBDIRS:sh=uname -p | sed 's/^\(.*\)$/\$\(OS_SUBDIRS_\1\)/'
688N/A
688N/Aall:
688N/A $(MAKE) $(MFLAGS) subdirs OS_TARGET=all
688N/A
688N/AWorld: clean all
688N/A
688N/Aclean:
688N/A $(MAKE) $(MFLAGS) subdirs OS_TARGET=clean
688N/A
688N/Ainstall:
688N/A $(MAKE) $(MFLAGS) subdirs OS_TARGET=install
688N/A
688N/Adownload:
688N/A $(MAKE) $(MFLAGS) subdirs OS_TARGET=download
688N/A
688N/Asubdirs:
688N/A @case '${MFLAGS}' in *[ik]*) set +e;; esac; \
688N/A for i in $(OS_SUBDIRS) ;\
688N/A do \
688N/A (cd $$i ; echo "## making" $(OS_TARGET) "in open-src/lib/$$i..."; \
688N/A $(MAKE) $(MFLAGS) CDEBUGFLAGS="$(CDEBUGFLAGS)" $(OS_TARGET)); \
688N/A done
688N/A