Makefile revision 970
970N/A# Makefile for X Consolidation Open Source Xorg driver modules
970N/A#
970N/A# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
970N/A#
970N/A# Permission is hereby granted, free of charge, to any person obtaining a
970N/A# copy of this software and associated documentation files (the "Software"),
970N/A# to deal in the Software without restriction, including without limitation
970N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
970N/A# and/or sell copies of the Software, and to permit persons to whom the
970N/A# Software is furnished to do so, subject to the following conditions:
970N/A#
970N/A# The above copyright notice and this permission notice (including the next
970N/A# paragraph) shall be included in all copies or substantial portions of the
970N/A# Software.
970N/A#
970N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
970N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
970N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
970N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
970N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
970N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
970N/A# DEALINGS IN THE SOFTWARE.
970N/A#
970N/A#
970N/A###############################################################################
970N/A
970N/AOS_SUBDIRS_common = \
970N/A xf86-input-keyboard \
970N/A xf86-input-mouse \
970N/A xf86-input-void \
970N/A xf86-video-ast \
970N/A xf86-video-dummy
970N/A
970N/AOS_SUBDIRS_sparc = $(OS_SUBDIRS_common) \
970N/A xf86-video-wsfb
970N/A
970N/AOS_SUBDIRS_i386 = $(OS_SUBDIRS_common) \
970N/A xf86-input-acecad \
970N/A xf86-input-synaptics \
970N/A xf86-input-vmmouse \
970N/A xf86-input-hotkey \
970N/A xf86-video-apm \
970N/A xf86-video-ark \
970N/A xf86-video-ati \
970N/A xf86-video-chips \
970N/A xf86-video-cirrus \
970N/A xf86-video-glint \
970N/A xf86-video-i128 \
970N/A xf86-video-i740 \
970N/A xf86-video-intel \
970N/A xf86-video-mach64 \
970N/A xf86-video-mga \
970N/A xf86-video-neomagic \
970N/A xf86-video-nv \
970N/A xf86-video-openchrome \
970N/A xf86-video-radeonhd \
970N/A xf86-video-rendition \
970N/A xf86-video-r128 \
970N/A xf86-video-s3 \
970N/A xf86-video-s3virge \
970N/A xf86-video-savage \
970N/A xf86-video-siliconmotion \
970N/A xf86-video-sis \
970N/A xf86-video-tdfx \
970N/A xf86-video-tga \
970N/A xf86-video-trident \
970N/A xf86-video-tseng \
970N/A xf86-video-vesa \
970N/A xf86-video-vmware
970N/A
970N/A# Subdirs we used to build, but now just need to clean up
970N/AOBSOLETE_SUBDIRS = \
970N/A xf86-input-calcomp \
970N/A xf86-input-citron \
970N/A xf86-input-digitaledge \
970N/A xf86-input-dmc \
970N/A xf86-input-dynapro \
970N/A xf86-input-elographics \
970N/A xf86-input-fpit \
970N/A xf86-input-hyperpen \
970N/A xf86-input-jamstudio \
970N/A xf86-input-magellan \
970N/A xf86-input-microtouch \
970N/A xf86-input-mutouch \
970N/A xf86-input-palmax \
970N/A xf86-input-penmount \
970N/A xf86-input-spaceorb \
970N/A xf86-input-summa \
970N/A xf86-input-tek4957 \
970N/A xf86-video-cyrix \
970N/A xf86-video-i810 \
970N/A xf86-video-nsc \
970N/A xf86-video-vga \
970N/A xf86-video-via
970N/A
970N/APWD:sh=pwd
970N/ATOP=$(PWD)/../..
970N/A
970N/A### Include common definitions
970N/ADIRNAME="driver/"
970N/Ainclude $(TOP)/open-src/common/Makefile.subdirs
970N/A
970N/A# Dependencies between modules
970N/Axf86-input-vmmouse: xf86-input-mouse
970N/A
970N/A