2537N/A#
3909N/A# Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
2537N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2537N/A#
2537N/A# This code is free software; you can redistribute it and/or modify it
2537N/A# under the terms of the GNU General Public License version 2 only, as
2537N/A# published by the Free Software Foundation. Oracle designates this
2537N/A# particular file as subject to the "Classpath" exception as provided
2537N/A# by Oracle in the LICENSE file that accompanied this code.
2537N/A#
2537N/A# This code is distributed in the hope that it will be useful, but WITHOUT
2537N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2537N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2537N/A# version 2 for more details (a copy is included in the LICENSE file that
2537N/A# accompanied this code).
2537N/A#
2537N/A# You should have received a copy of the GNU General Public License version
2537N/A# 2 along with this work; if not, write to the Free Software Foundation,
2537N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2537N/A#
2537N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2537N/A# or visit www.oracle.com if you need additional information or have any
2537N/A# questions.
2537N/A#
2537N/A
2537N/A# Copyright year for beginning of Java and some of the apis
2537N/A# (Needed when creating the javadocs)
2537N/AFIRST_COPYRIGHT_YEAR = 1993
2537N/ADOMAPI_FIRST_COPYRIGHT_YEAR = 2005
2537N/AMIRROR_FIRST_COPYRIGHT_YEAR = 2004
2537N/ADOCLETAPI_FIRST_COPYRIGHT_YEAR = 1993
2537N/ATAGLETAPI_FIRST_COPYRIGHT_YEAR = 1993
2537N/AJDI_FIRST_COPYRIGHT_YEAR = 1999
2537N/AJAAS_FIRST_COPYRIGHT_YEAR = 1998
2537N/AJGSS_FIRST_COPYRIGHT_YEAR = 2000
2537N/ASMARTCARDIO_FIRST_COPYRIGHT_YEAR = 2005
2537N/AHTTPSERVER_FIRST_COPYRIGHT_YEAR = 2005
2537N/AMGMT_FIRST_COPYRIGHT_YEAR = 2003
2537N/AATTACH_FIRST_COPYRIGHT_YEAR = 2005
2537N/AJCONSOLE_FIRST_COPYRIGHT_YEAR = 2006
2537N/ASCTPAPI_FIRST_COPYRIGHT_YEAR = 2009
2537N/ATRACING_FIRST_COPYRIGHT_YEAR = 2008
2537N/ATREEAPI_FIRST_COPYRIGHT_YEAR = 2005
2537N/AJNLP_FIRST_COPYRIGHT_YEAR = 1998
2537N/APLUGIN2_FIRST_COPYRIGHT_YEAR = 2007
2537N/A
2537N/A# Oracle name
2835N/AFULL_COMPANY_NAME = Oracle and/or its affiliates
2537N/A
2537N/A# Copyright address
2537N/ACOMPANY_ADDRESS = 500 Oracle Parkway<br>Redwood Shores, CA 94065 USA.
2537N/A
2537N/A# The trademark symbol
2537N/ATRADEMARK = &trade;
2537N/A
2537N/A# Common copyright lines used
2537N/A# The word "Copyright" might optionally be a link to the file cpyr.html.
2537N/A# The first year of copyright may vary or not be available.
2537N/A# The address to the company might be optional.
2537N/ACOMMA:= ,
2537N/AEMPTY:=
2537N/ASPACE:=$(EMPTY) $(EMPTY)
2537N/ACOPYRIGHT_SYMBOL = &\#x00a9;
3597N/A# Macro to construct the copyright line
2537N/A# (The GNU make 3.78.1 "if" conditional is broken, fixed in GNU make 3.81)
2537N/Adefine CopyrightLine # optionalurl optionalfirstyear optionaladdress
3688N/A$(if $(strip $1),<a href="$(strip $1)">Copyright</a>,Copyright) \
3597N/A$(COPYRIGHT_SYMBOL) $(if $2,$2${COMMA},) $(COPYRIGHT_YEAR),\
3597N/A$(FULL_COMPANY_NAME). $3 All rights reserved.
2537N/Aendef
2537N/A