Makefile revision 965
424N/A# Makefile for X Consolidation Open Source Protocol modules
424N/A#
424N/A# Copyright (c) 2006, 2009, Oracle and/or its affiliates. All rights reserved.
424N/A#
424N/A# Permission is hereby granted, free of charge, to any person obtaining a
424N/A# copy of this software and associated documentation files (the "Software"),
424N/A# to deal in the Software without restriction, including without limitation
424N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
424N/A# and/or sell copies of the Software, and to permit persons to whom the
424N/A# Software is furnished to do so, subject to the following conditions:
424N/A#
424N/A# The above copyright notice and this permission notice (including the next
424N/A# paragraph) shall be included in all copies or substantial portions of the
424N/A# Software.
424N/A#
424N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
424N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
424N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
424N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
424N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
424N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
424N/A# DEALINGS IN THE SOFTWARE.
424N/A#
424N/A#
424N/A###############################################################################
424N/A
424N/AOS_SUBDIRS_common = \
424N/A x11proto \
424N/A bigreqsproto \
424N/A compositeproto \
424N/A damageproto \
424N/A dri2proto \
424N/A evieproto \
424N/A fixesproto \
424N/A fontcacheproto \
424N/A fontsproto \
424N/A glproto \
424N/A inputproto \
424N/A kbproto \
424N/A pmproto \
424N/A printproto \
424N/A randrproto \
424N/A recordproto \
424N/A renderproto \
424N/A resourceproto \
424N/A scrnsaverproto \
424N/A videoproto \
424N/A xcmiscproto \
424N/A xextproto \
424N/A xf86bigfontproto \
424N/A xf86dgaproto \
424N/A xf86driproto \
424N/A xf86miscproto \
424N/A xf86vidmodeproto \
424N/A xineramaproto \
424N/A sun-ext-protos
424N/A
424N/AOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
424N/A
424N/AOS_SUBDIRS_i386 = $(OS_SUBDIRS_common)
424N/A
424N/AOBSOLETE_SUBDIRS = \
424N/A lg3dproto \
424N/A trapproto
424N/A
424N/A# Need to install to proto area by default for inter-package dependencies to
424N/A# work right.
424N/Adefault_target: install
424N/A
424N/APWD:sh=pwd
424N/ATOP=$(PWD)/..
424N/A
424N/A### Include common definitions
424N/ADIRNAME="proto/"
424N/Ainclude $(TOP)/common/Makefile.subdirs
424N/A