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