Makefile revision 810
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# Makefile for X Consolidation Open Source Documentation tools & modules
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey#
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# Use is subject to license terms.
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey#
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# Permission is hereby granted, free of charge, to any person obtaining a
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# copy of this software and associated documentation files (the
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# "Software"), to deal in the Software without restriction, including
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# without limitation the rights to use, copy, modify, merge, publish,
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# distribute, and/or sell copies of the Software, and to permit persons
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# to whom the Software is furnished to do so, provided that the above
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# copyright notice(s) and this permission notice appear in all copies of
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# the Software and that both the above copyright notice(s) and this
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# permission notice appear in supporting documentation.
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey#
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey#
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# Except as contained in this notice, the name of a copyright holder
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# shall not be used in advertising or otherwise to promote the sale, use
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# or other dealings in this Software without prior written authorization
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# of the copyright holder.
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey#
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# ident "@(#)Makefile 1.5 09/10/13 SMI"
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey#
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey###############################################################################
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey
76e306183bb8c3935c091a558690edc310edbd70Tom RumseyOS_SUBDIRS_common = \
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey docbook-utils \
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey xorg-sgml-doctools \
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey xorg-docs
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey
76e306183bb8c3935c091a558690edc310edbd70Tom RumseyOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
76e306183bb8c3935c091a558690edc310edbd70Tom RumseyOS_SUBDIRS_i386 = $(OS_SUBDIRS_common)
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# Need to install to proto area by default for inter-package dependencies to
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# work right.
76e306183bb8c3935c091a558690edc310edbd70Tom Rumseydefault_target: install
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey# Dependencies for parallel make
76e306183bb8c3935c091a558690edc310edbd70Tom Rumseyxorg-docs: docbook-utils xorg-sgml-doctools
76e306183bb8c3935c091a558690edc310edbd70Tom Rumseydocbook-utils: xorg-sgml-doctools
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey
76e306183bb8c3935c091a558690edc310edbd70Tom RumseyPWD:sh=pwd
76e306183bb8c3935c091a558690edc310edbd70Tom RumseyTOP=$(PWD)/..
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey### Include common definitions
76e306183bb8c3935c091a558690edc310edbd70Tom RumseyDIRNAME="docs/"
76e306183bb8c3935c091a558690edc310edbd70Tom Rumseyinclude $(TOP)/common/Makefile.subdirs
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey
76e306183bb8c3935c091a558690edc310edbd70Tom Rumsey