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