jdk/make/sun/splashscreen/FILES_c.gmk
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 3704 bd98409d8c32
child 11112 6d340c7b6a32
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3704
diff changeset
     2
# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3704
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3704
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3704
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3704
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3704
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
FILES_c = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
	java_awt_SplashScreen.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
	splashscreen_gfx_impl.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
	splashscreen_gif.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
	splashscreen_impl.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
	splashscreen_jpeg.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
	splashscreen_png.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
	splashscreen_sys.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
	png.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
	pngerror.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
	pngget.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
	pngmem.c  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
	pngpread.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
	pngread.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
	pngrio.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
	pngrtran.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
	pngrutil.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
	pngset.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
	pngtrans.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
	pngwio.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
	pngwrite.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
	pngwtran.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
	pngwutil.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
	dgif_lib.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
	gif_err.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
	gifalloc.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
	compress.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
	deflate.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
	gzio.c \
3704
bd98409d8c32 4963968: zlib should be upgraded to current version of zlib
sherman
parents: 2
diff changeset
    55
	infback.c \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
	inffast.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
	inflate.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
	inftrees.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
	trees.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
	uncompr.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
	zadler32.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
	zcrc32.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
	zutil.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
	jcomapi.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
	jdapimin.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
	jdapistd.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
	jdcoefct.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
	jdcolor.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
	jddctmgr.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
	jdhuff.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
	jdinput.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
	jdmainct.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
	jdmarker.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
	jdmaster.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
	jdmerge.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
	jdphuff.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
	jdpostct.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
	jdsample.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
	jerror.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
	jidctflt.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
	jidctfst.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
	jidctint.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
	jidctred.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
	jmemmgr.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
	jmemnobs.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
	jquant1.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
	jquant2.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
	jutils.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
	jcapimin.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
	jcapistd.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
	jccoefct.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
	jccolor.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
	jcdctmgr.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
	jchuff.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
	jcinit.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
	jcmainct.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
	jcmarker.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
	jcmaster.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
	jcparam.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
	jcphuff.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
	jcprepct.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
	jcsample.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
	jctrans.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
	jdtrans.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
	jfdctflt.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
	jfdctfst.c \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
	jfdctint.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108