Makefile revision 967
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# Makefile for X Consolidation Open Source bits
75c0816e8295e180f4bc7f10db3d0d880383bc1cMark Andrews# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
4a14ce5ba00ab7bc55c99ffdcf59c7a4ab902721Automatic Updater# Permission is hereby granted, free of charge, to any person obtaining a
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# copy of this software and associated documentation files (the "Software"),
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# to deal in the Software without restriction, including without limitation
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# the rights to use, copy, modify, merge, publish, distribute, sublicense,
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# and/or sell copies of the Software, and to permit persons to whom the
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# Software is furnished to do so, subject to the following conditions:
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# The above copyright notice and this permission notice (including the next
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# paragraph) shall be included in all copies or substantial portions of the
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
ea94d370123a5892f6c47a97f21d1b28d44bb168Tinderbox User# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
e21a2904f02a03fa06b6db04d348f65fe9c67b2bMark Andrews# DEALINGS IN THE SOFTWARE.
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein###############################################################################
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# Need to install to proto area by default for inter-package dependencies to
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# work right.
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# Modules have to be built in a specific order for dependencies to be
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# handled properly
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# Some specific notes:
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# - app/rgb depends on the rgb.h header installed by the Xorg xserver,
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# so has to be built after xserver/xorg
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# - util/util-macros must be first, since any module that does autoreconf
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# requires it
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# - data/xbitmaps must be before app, as some applications depend on the
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# bitmaps installed, but the rest of data depends on applications like
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# xcursorgen for processing, so must come later
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# - font depends on utils like mkfontdir from app
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein# High level dependencies
bec154197d3d640b0d5b416cd5218ea58dca5d3aTinderbox UserFONTAPPS = app/bdftopcf app/mkfontscale app/mkfontdir
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein### Include common definitions