Makefile revision 3909
0N/A#
0N/A# Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
0N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
0N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A# or visit www.oracle.com if you need additional information or have any
0N/A# questions.
0N/A#
0N/A
0N/ABUILDDIR = ../../..
0N/APRODUCT = java
0N/Ainclude $(BUILDDIR)/common/Defs.gmk
0N/A
0N/A
0N/A#
0N/A# List of lucida font files that we redistribute.
0N/A#
0N/A
0N/ASHARED_FONTFILES = \
0N/A $(LIBDIR)/fonts/LucidaTypewriterRegular.ttf \
0N/A $(LIBDIR)/fonts/LucidaTypewriterBold.ttf \
0N/A $(LIBDIR)/fonts/LucidaBrightRegular.ttf \
0N/A $(LIBDIR)/fonts/LucidaBrightDemiBold.ttf \
0N/A $(LIBDIR)/fonts/LucidaBrightItalic.ttf \
0N/A $(LIBDIR)/fonts/LucidaBrightDemiItalic.ttf \
0N/A $(LIBDIR)/fonts/LucidaSansRegular.ttf \
0N/A $(LIBDIR)/fonts/LucidaSansDemiBold.ttf \
0N/A
0N/Aifeq ($(PLATFORM), linux)
0N/A
0N/A# The oblique versions of the font are derived from the base versions
0N/A# and since 2D can do this derivation on the fly at run time there is no
0N/A# need to redistribute the fonts. An exception to this is on Linux.
0N/A# The reason is that the Lucidas are specified in the font.properties files
0N/A# on Linux, and so AWT/Motif components expect to be able to ask the Xserver
0N/A# for these oblique fonts, but the Xserver cannot do the same derivation as
0N/A# 2D can.
0N/A
0N/AOBLIQUE_FONTFILES = \
0N/A $(LIBDIR)/oblique-fonts/LucidaTypewriterOblique.ttf \
0N/A $(LIBDIR)/oblique-fonts/LucidaTypewriterBoldOblique.ttf \
0N/A $(LIBDIR)/oblique-fonts/LucidaSansOblique.ttf \
0N/A $(LIBDIR)/oblique-fonts/LucidaSansDemiOblique.ttf \
0N/A
0N/Aendif
0N/A
0N/Aifndef OPENJDK
0N/A
0N/A# Lucida font files are not included in the OpenJDK distribution.
0N/A# Get names of font files
0N/A
0N/A# Copy font files into OUTPUTDIR area
0N/A
0N/AFONTFILES = $(SHARED_FONTFILES)
0N/AFONTSDIR = $(LIBDIR)/fonts
0N/AFONTSDIRFILE = $(FONTSDIR)/fonts.dir
0N/AINTERNAL_IMPORT_LIST = $(FONTFILES)
0N/A
0N/Aifneq ($(PLATFORM), windows)
0N/A INTERNAL_IMPORT_LIST += $(FONTSDIRFILE)
0N/Aendif
0N/A
0N/A$(LIBDIR)/fonts/%.ttf: $(CLOSED_SRC)/share/lib/fonts/%.ttf
0N/A $(install-file)
0N/A
0N/A$(FONTSDIRFILE): $(PLATFORM_SRC)/classes/sun/awt/motif/java.fonts.dir
0N/A $(install-file)
0N/A
0N/Aifeq ($(PLATFORM), linux)
0N/A
0N/A# The oblique fonts are only needed/wanted on Linux.
0N/A
0N/AOBLFONTSDIR = $(LIBDIR)/oblique-fonts
0N/AOBLFONTSDIRFILE = $(OBLFONTSDIR)/fonts.dir
0N/AINTERNAL_IMPORT_LIST += $(OBLIQUE_FONTFILES) $(OBLFONTSDIRFILE)
0N/A
0N/A$(LIBDIR)/oblique-fonts/%.ttf: $(CLOSED_SRC)/share/lib/fonts/oblique/%.ttf
0N/A $(install-file)
0N/A
0N/A$(OBLFONTSDIRFILE): $(PLATFORM_SRC)/classes/sun/awt/motif/java.oblique-fonts.dir
0N/A $(install-file)
0N/A
0N/Aendif # linux
0N/A
0N/Aall build : $(INTERNAL_IMPORT_LIST)
0N/A
0N/Aclean clobber::
0N/A $(RM) $(INTERNAL_IMPORT_LIST)
0N/A
0N/Aelse
0N/A
0N/Aall build clean clobber :
0N/A
0N/Aendif # !OPENJDK
0N/A