Makefile revision 919
1450N/A# Makefile for X Consolidation Open Source font modules
1450N/A#
1450N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
1450N/A# Use is subject to license terms.
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# Need to install to proto area by default for inter-package dependencies to
1450N/A# work right.
1450N/Adefault_target: install
1450N/A
1450N/A# encodings & util must be first, since they install files used by the rest
1471N/A# sun-aliases must be last, since it builds on the results of the rest
1450N/A
1450N/AFONT_SUBDIRS= \
1450N/A bitstream-vera \
1450N/A deja-vu \
1450N/A google-droid \
1450N/A liberation \
1450N/A adobe-75dpi \
1450N/A adobe-100dpi \
1450N/A adobe-utopia-75dpi \
1450N/A adobe-utopia-100dpi \
1450N/A adobe-utopia-type1 \
1450N/A alias \
1450N/A arabic-misc \
1450N/A bh-75dpi \
1450N/A bh-100dpi \
1450N/A bh-lucidatypewriter-75dpi \
1450N/A bh-lucidatypewriter-100dpi \
1450N/A bh-ttf \
1450N/A bh-type1 \
1450N/A bitstream-75dpi \
1450N/A bitstream-100dpi \
1450N/A bitstream-type1 \
1450N/A cronyx-cyrillic \
1450N/A cursor-misc \
1450N/A daewoo-misc \
1450N/A dec-misc \
1450N/A ibm-type1 \
1450N/A isas-misc \
1450N/A jis-misc \
1450N/A micro-misc \
1450N/A misc-cyrillic \
1450N/A misc-ethiopic \
1450N/A misc-meltho \
1450N/A misc-misc \
1450N/A mutt-misc \
1450N/A schumacher-misc \
1450N/A screen-cyrillic \
1450N/A sony-misc \
1450N/A sun-misc \
1450N/A winitzki-cyrillic \
1450N/A xfree86-type1 \
1450N/A
1450N/AOS_SUBDIRS_common = \
1450N/A encodings \
1450N/A util \
1450N/A $(FONT_SUBDIRS) \
1450N/A sun-aliases
1450N/A
1450N/A$(FONT_SUBDIRS): encodings util
1450N/Asun-aliases: $(FONT_SUBDIRS)
1450N/A
1450N/AOS_SUBDIRS_sparc = $(OS_SUBDIRS_common)
1450N/AOS_SUBDIRS_i386 = $(OS_SUBDIRS_common)
1450N/A
1450N/APWD:sh=pwd
1450N/ATOP=$(PWD)/..
1450N/A
1450N/A### Include common definitions
1450N/ADIRNAME="font/"
1450N/Ainclude $(TOP)/common/Makefile.subdirs
1450N/A
1450N/A