Makefile revision 618
4117N/A#
4117N/A# Copyright 2000-2005 Sun Microsystems, Inc. All Rights Reserved.
4117N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4117N/A#
4117N/A# This code is free software; you can redistribute it and/or modify it
4117N/A# under the terms of the GNU General Public License version 2 only, as
4117N/A# published by the Free Software Foundation. Sun designates this
4117N/A# particular file as subject to the "Classpath" exception as provided
4117N/A# by Sun in the LICENSE file that accompanied this code.
4117N/A#
4117N/A# This code is distributed in the hope that it will be useful, but WITHOUT
4117N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4117N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4117N/A# version 2 for more details (a copy is included in the LICENSE file that
4117N/A# accompanied this code).
4117N/A#
4117N/A# You should have received a copy of the GNU General Public License version
4117N/A# 2 along with this work; if not, write to the Free Software Foundation,
4117N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4117N/A#
4117N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
4117N/A# CA 95054 USA or visit www.sun.com if you need additional information or
4117N/A# have any questions.
4117N/A#
4117N/A
4117N/ABUILDDIR = ../../..
4117N/APACKAGE = sun.net
4117N/APRODUCT = sun
4117N/Ainclude $(BUILDDIR)/common/Defs.gmk
4117N/A
4117N/A#
4117N/A# Files
4117N/A#
4117N/Ainclude $(BUILDDIR)/sun/net/FILES_java.gmk
4117N/A
4117N/A#
4117N/A# Rules
4117N/A#
4117N/Ainclude $(BUILDDIR)/common/Classes.gmk
4117N/A
4117N/Abuild: properties nameprep-profile
4156N/A
4156N/Aclean clobber:: properties.clean nameprep-profile.clean
4156N/A
4156N/A#
4156N/A# Install/nuke properties.
4156N/A#
4156N/APROPS = $(PLATFORM_SRC)/lib/content-types.properties
4156N/A
4156N/A$(LIBDIR)/content-types.properties: $(PROPS)
4156N/A $(install-file)
4156N/A
4156N/Aproperties: $(LIBDIR)/content-types.properties
4117N/A
4117N/Aproperties.clean:
4117N/A $(RM) -r $(LIBDIR)/content-types.properties
4117N/A
4117N/A#
4117N/A# Install/nuke nameprep profile.
4117N/A#
4117N/ANAMEPREP_PROFILE_SRC = $(TOPDIR)/src/share/classes/sun/net/idn/uidna.spp
4117N/ANAMEPREP_PROFILE_BUILD = $(CLASSBINDIR)/sun/net/idn/uidna.spp
4117N/A
4117N/Anameprep-profile: $(NAMEPREP_PROFILE_BUILD)
4117N/A
4117N/Anameprep-profile.clean:
4117N/A $(RM) -r $(NAMEPREP_PROFILE_BUILD)
4117N/A
4117N/A$(NAMEPREP_PROFILE_BUILD): $(NAMEPREP_PROFILE_SRC)
4117N/A $(install-file)
4117N/A
4117N/A$(NAMEPREP_PROFILE_SRC):
4117N/A
4117N/A.PHONY: properties properties.clean nameprep-profile nameprep-profile.clean
4117N/A
4117N/A