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