Makefile revision 1097
1450N/A# Makefile for X Consolidation Open Source Application modules
1450N/A#
1450N/A# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
1450N/A#
1450N/A# Permission is hereby granted, free of charge, to any person obtaining a
1450N/A# copy of this software and associated documentation files (the "Software"),
1450N/A# to deal in the Software without restriction, including without limitation
1450N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
1450N/A# and/or sell copies of the Software, and to permit persons to whom the
1450N/A# Software is furnished to do so, subject to the following conditions:
1450N/A#
1450N/A# The above copyright notice and this permission notice (including the next
1450N/A# paragraph) shall be included in all copies or substantial portions of the
1450N/A# Software.
1450N/A#
1450N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1450N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1450N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
1450N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1450N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1450N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1450N/A# DEALINGS IN THE SOFTWARE.
1450N/A#
1450N/A#
1450N/A###############################################################################
1450N/A
1450N/A# Several utilities are not listed here because they are called out in
1450N/A# the makefile in the higher level directory due to dependencies between
1450N/A# them and modules in other directories. These include:
1450N/A# rgb, mkfontdir, mkfontscale, bdftopcf
1450N/A
1450N/AOS_SUBDIRS_common = \
1450N/A accessx \
1450N/A appres \
1450N/A bitmap \
1450N/A cmap_alloc \
1450N/A cmap_compact \
1450N/A constype \
1450N/A dispswitch \
1450N/A editres \
1450N/A fbconsole \
1450N/A fslsfonts \
1450N/A fstobdf \
1450N/A iceauth \
1450N/A ico \
1450N/A installalias \
1450N/A lbxproxy \
1450N/A listres \
1450N/A luit \
1450N/A kbd_mode \
1450N/A mesa-demos \
1450N/A mkcookie \
1450N/A oclock \
1450N/A proxymngr \
1450N/A rstart \
1450N/A sessreg \
1450N/A setxkbmap \
1450N/A showfont \
1450N/A smproxy \
1450N/A synergy \
1450N/A winsysck \
1450N/A twm \
1450N/A viewres \
1450N/A x11perf \
1450N/A xauth \
1450N/A xbiff \
1450N/A xcalc \
1450N/A xclipboard \
1450N/A xclock \
1450N/A xcmsdb \
1450N/A xcolor \
1450N/A xcompmgr \
1450N/A transset \
1450N/A xconsole \
1450N/A xcursorgen \
1450N/A xditview \
1450N/A xdm \
1450N/A xdpyinfo \
1450N/A xdriinfo \
1450N/A xedit \
1450N/A xev \
1450N/A xeyes \
1450N/A xfd \
1450N/A xfindproxy \
1450N/A xfontsel \
1450N/A xfs \
1450N/A xfsinfo \
1450N/A xfwp \
1450N/A xgamma \
1450N/A xgc \
1450N/A xhost \
1450N/A xinit \
1450N/A xinput \
1450N/A xkbcomp \
1450N/A xkbprint \
1450N/A xkbutils \
1450N/A xkill \
1450N/A xload \
1450N/A xlock \
1450N/A xlogo \
1450N/A xlsatoms \
1450N/A xlsclients \
1450N/A xlsfonts \
1450N/A xlswins \
1450N/A xmag_multivis \
1450N/A xmag \
1450N/A xmakemap \
1450N/A xman \
1450N/A xmodmap \
1450N/A xpm \
1450N/A xpr \
1450N/A xprop \
1450N/A xrandr \
1450N/A xrdb \
1450N/A xrefresh \
1450N/A xrx \
1450N/A xscope \
1450N/A xset \
1450N/A xsetroot \
1450N/A xstdcmap \
1450N/A xterm \
1450N/A xvidtune \
1450N/A xvinfo \
1450N/A xwd \
1450N/A xwininfo \
1450N/A xwud \
1450N/A
1450N/AOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
1450N/A
1450N/AOS_SUBDIRS_i386 = $(OS_SUBDIRS_common)
1450N/A
1450N/AOBSOLETE_SUBDIRS = \
1450N/A xplsprinters \
1450N/A xprehashprinterlist \
1450N/A xscreensaver \
1450N/A rss-glx
1450N/A
1450N/APWD:sh=pwd
1450N/ATOP=$(PWD)/../..
1450N/A
1450N/A### Include common definitions
DIRNAME="app/"
include $(TOP)/open-src/common/Makefile.subdirs