Makefile revision 824
d6fa26d0adaec6c910115be34fe7a5a5f402c14fMark Andrews# Makefile for DPS sub-modules
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt#
71cef386fae61275b03e203825680b39fedaa8c6Tinderbox User# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
bef75d63d74f58abc0f834ed271526672777ba29Automatic Updater# Use is subject to license terms.
5347c0fcb04eaea19d9f39795646239f487c6207Tinderbox User#
5347c0fcb04eaea19d9f39795646239f487c6207Tinderbox User# Permission is hereby granted, free of charge, to any person obtaining a
5347c0fcb04eaea19d9f39795646239f487c6207Tinderbox User# copy of this software and associated documentation files (the
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# "Software"), to deal in the Software without restriction, including
d6fa26d0adaec6c910115be34fe7a5a5f402c14fMark Andrews# without limitation the rights to use, copy, modify, merge, publish,
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# distribute, and/or sell copies of the Software, and to permit persons
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# to whom the Software is furnished to do so, provided that the above
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# copyright notice(s) and this permission notice appear in all copies of
fd2597f75693a2279fdf588bd40dfe2407c42028Tinderbox User# the Software and that both the above copyright notice(s) and this
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# permission notice appear in supporting documentation.
cd32f419a8a5432fbb139f56ee73cbf68b9350ccTinderbox User#
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt#
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# Except as contained in this notice, the name of a copyright holder
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# shall not be used in advertising or otherwise to promote the sale, use
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# or other dealings in this Software without prior written authorization
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# of the copyright holder.
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt#
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt# ident "@(#)Makefile 1.1 09/11/09 SMI"
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt#
fd2597f75693a2279fdf588bd40dfe2407c42028Tinderbox User###############################################################################
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox Userdefault_target: all
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User# Dependencies needed for parallel make:
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox Userlibdps: pswrap
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox Userlibdpstk: pswrap libdps libpsres
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User
0f66aced2640d964aeb6db41210711ba0640d7f2Evan HuntOS_SUBDIRS_common = \
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User pswrap \
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User makepsres \
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User libdps \
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User libpsres \
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt libdpstk
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox UserOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox UserOS_SUBDIRS_i386 = $(OS_SUBDIRS_common)
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox UserPWD:sh=pwd
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox UserTOP=$(PWD)/../../../..
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User### Include common definitions
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox UserDIRNAME="lib/DPS/build_32/"
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox Userinclude $(TOP)/common/Makefile.subdirs
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User
7911e6f9de303bca5a3d8b34f4330c8f7cecffaeTinderbox User