Makefile revision 1003
424N/A# Makefile for X Consolidation Open Source font modules
424N/A#
424N/A# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
424N/A#
424N/A# Permission is hereby granted, free of charge, to any person obtaining a
424N/A# copy of this software and associated documentation files (the "Software"),
424N/A# to deal in the Software without restriction, including without limitation
424N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
424N/A# and/or sell copies of the Software, and to permit persons to whom the
424N/A# Software is furnished to do so, subject to the following conditions:
424N/A#
424N/A# The above copyright notice and this permission notice (including the next
424N/A# paragraph) shall be included in all copies or substantial portions of the
424N/A# Software.
424N/A#
424N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
424N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
424N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
424N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
424N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
424N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
424N/A# DEALINGS IN THE SOFTWARE.
424N/A#
424N/A#
424N/A###############################################################################
424N/A
424N/A# Need to install to proto area by default for inter-package dependencies to
424N/A# work right.
424N/Adefault_target: install
424N/A
424N/A# encodings & util must be first, since they install files used by the rest
424N/A# sun-aliases must be last, since it builds on the results of the rest
424N/A
424N/AFONT_SUBDIRS= \
424N/A bitstream-vera \
424N/A deja-vu \
424N/A google-droid \
424N/A liberation \
424N/A adobe-75dpi \
424N/A adobe-100dpi \
424N/A adobe-utopia-75dpi \
424N/A adobe-utopia-100dpi \
424N/A adobe-utopia-type1 \
424N/A alias \
424N/A arabic-misc \
424N/A bh-75dpi \
424N/A bh-100dpi \
424N/A bh-lucidatypewriter-75dpi \
424N/A bh-lucidatypewriter-100dpi \
424N/A bh-ttf \
424N/A bh-type1 \
424N/A bitstream-75dpi \
424N/A bitstream-100dpi \
424N/A bitstream-type1 \
424N/A cronyx-cyrillic \
424N/A cursor-misc \
424N/A daewoo-misc \
424N/A dec-misc \
424N/A ibm-type1 \
424N/A isas-misc \
424N/A jis-misc \
424N/A micro-misc \
424N/A misc-cyrillic \
424N/A misc-ethiopic \
424N/A misc-meltho \
424N/A misc-misc \
424N/A mutt-misc \
424N/A schumacher-misc \
424N/A screen-cyrillic \
424N/A sony-misc \
424N/A sun-misc \
424N/A winitzki-cyrillic \
424N/A xfree86-type1 \
424N/A
424N/AOS_SUBDIRS_common = \
424N/A encodings \
424N/A util \
424N/A $(FONT_SUBDIRS) \
424N/A sun-aliases
424N/A
424N/A$(FONT_SUBDIRS): encodings util
424N/Asun-aliases: $(FONT_SUBDIRS)
424N/A
424N/AOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
424N/AOS_SUBDIRS_i386 = $(OS_SUBDIRS_common)
424N/A
424N/APWD:sh=pwd
424N/ATOP=$(PWD)/../..
424N/A
424N/A### Include common definitions
424N/ADIRNAME="font/"
424N/Ainclude $(TOP)/open-src/common/Makefile.subdirs
424N/A
424N/A