Makefile revision 156
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# Makefile for X Consolidation Open Source Protocol modules
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# Use subject to license terms.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# Permission is hereby granted, free of charge, to any person obtaining a
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# copy of this software and associated documentation files (the
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# "Software"), to deal in the Software without restriction, including
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# without limitation the rights to use, copy, modify, merge, publish,
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# distribute, and/or sell copies of the Software, and to permit persons
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# to whom the Software is furnished to do so, provided that the above
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# copyright notice(s) and this permission notice appear in all copies of
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# the Software and that both the above copyright notice(s) and this
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# permission notice appear in supporting documentation.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# Except as contained in this notice, the name of a copyright holder
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# shall not be used in advertising or otherwise to promote the sale, use
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# or other dealings in this Software without prior written authorization
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# of the copyright holder.
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#
9512fe850e98fdd448c638ca63fdd92a8a510255ahl# @(#)Makefile 1.6 07/05/15
9512fe850e98fdd448c638ca63fdd92a8a510255ahl#
9512fe850e98fdd448c638ca63fdd92a8a510255ahl###############################################################################
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahlOS_SUBDIRS_common = X11 BigReqs Composite Damage EvIE Fixes Fontcache Fonts \
9512fe850e98fdd448c638ca63fdd92a8a510255ahl Input KB PM Randr Record Render Resource ScrnSaver Trap Video \
9512fe850e98fdd448c638ca63fdd92a8a510255ahl XCMisc XExt XF86BigFont XF86DGA XF86Misc XF86VidMode Xinerama \
9512fe850e98fdd448c638ca63fdd92a8a510255ahl lg3dproto
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahlOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
9512fe850e98fdd448c638ca63fdd92a8a510255ahl
9512fe850e98fdd448c638ca63fdd92a8a510255ahlOS_SUBDIRS_i386 = $(OS_SUBDIRS_common) \
9512fe850e98fdd448c638ca63fdd92a8a510255ahl glproto xf86driproto
MACH:sh=uname -p
OS_SUBDIRS=$(OS_SUBDIRS_$(MACH))
# Need to install to proto area by default for inter-package dependencies to
# work right.
all: install
World: clean install
clean:
$(MAKE) $(MFLAGS) subdirs OS_TARGET=clean
install:
$(MAKE) $(MFLAGS) subdirs OS_TARGET=install
download:
$(MAKE) $(MFLAGS) subdirs OS_TARGET=download
subdirs:
@case '${MFLAGS}' in *[ik]*) set +e;; esac; \
for i in $(OS_SUBDIRS) ;\
do \
(cd $$i ; echo "## making" $(OS_TARGET) "in open-src/proto/$$i..."; \
$(MAKE) $(MFLAGS) CDEBUGFLAGS="$(CDEBUGFLAGS)" $(OS_TARGET)); \
done