jdk/make/sun/awt/Makefile
author ohair
Wed, 30 Jul 2008 19:40:57 -0700
changeset 917 75261da60fff
parent 2 90ce3da70b43
child 922 8725ccb1a22d
permissions -rw-r--r--
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2 Reviewed-by: tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# Copyright 1995-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
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
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
BUILDDIR = ../..
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
PACKAGE = sun.awt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
LIBRARY = awt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
PRODUCT = sun
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
# Tell Defs.gmk that VIS is needed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
VIS_NEEDED=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 2
diff changeset
    34
# Use highest optimization level
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 2
diff changeset
    35
OPTMIZATION_LEVEL = HIGHEST
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 2
diff changeset
    36
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
include $(BUILDDIR)/common/Defs.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
OTHER_CFLAGS += -D__MEDIALIB_OLD_NAMES -D__USE_J2D_NAMES
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# Files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
# Include all Java source files in sun/awt and sun/java2d, except for:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
# sun/awt/resources       handled by java/awt/Makefile
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
# sun/java2d/pisces       handled by sun/pisces/Makefile
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
AUTO_FILES_JAVA_DIRS = sun/awt sun/java2d
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
AUTO_JAVA_PRUNE = resources pisces
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
# Files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
include FILES_c_windows.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
include FILES_export_windows.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
# Prune files that are currently unused on Windows (but still used on
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
# Solaris/Linux).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
AUTO_JAVA_PRUNE += RemoteOffScreenImage.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
OTHER_CXXFLAGS += -DD3D_OVERLOADS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
OTHER_CFLAGS += $(GX_OPTION) -DMLIB_NO_LIBSUNMATH -DUNICODE -D_UNICODE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
OTHER_CXXFLAGS += $(GX_OPTION) -DUNICODE -D_UNICODE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
ifeq ($(ARCH_DATA_MODEL), 64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
  OTHER_CFLAGS += -DMLIB_OS64BIT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv SOLARIS/LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
# Files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
include FILES_c_unix.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
include FILES_export_unix.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
# Prune the sun/awt/X11 subdirectory, which is handled by sun/xawt/Makefile.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
# Also prune files that are currently unused on Solaris/Linux (but still
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
# used on Windows).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
AUTO_JAVA_PRUNE += X11 AWTCharset.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
ifeq  ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
FILES_c = $(FILES_2D_c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
FILES_c += awt_LoadLibrary.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
OTHER_LDLIBS = $(JVMLIB) $(LIBM) -ldl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
ifeq ($(CC_VER), 5.8)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
  ifndef REMOVE_ALL_WORKAROUNDS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    ifeq ($(ARCH_FAMILY), i586)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
      # If on Solaris 11 (or dlfcn.h has unknown_control_flow pragmas in it)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
      #   we trigger a SS11 bug that causes the compiler to crash (bug 6343678)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
      #   Here we check to see if we need this workaround and change the opt 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
      #   settings for this one file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
      USE_WORKAROUND:=$(shell $(GREP) unknown_control_flow /usr/include/dlfcn.h)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
      ifneq ($(USE_WORKAROUND),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
	ifeq ($(FASTDEBUG), true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
          CFLAGS_DBG/awt_Mlib.o = -xO0 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
	    $(warning  "WARNING: Using workaround for SS11 bug 6343678, on $@")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
	endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        # Compiler bug 6343678 need to prevent a SEGV in the compiler
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        CFLAGS_OPT/awt_Mlib.o = -g \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
	  $(warning  "WARNING: Using workaround for SS11 bug 6343678, on $@")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
      endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
ifeq  ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
FILES_c = $(FILES_2D_c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
FILES_c += awt_LoadLibrary.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
OTHER_CFLAGS += -DMLIB_NO_LIBSUNMATH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
OTHER_LDLIBS = $(JVMLIB) $(LIBM) -ldl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
FILES_c += initIDs.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SOLARIS/LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
endif # PLATFORM 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv SOLARIS-SPARC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
# solaris-sparc and solaris-sparcv9 both build 'vis'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
ifeq ("$(PLATFORM)-$(ARCH_FAMILY)", "solaris-sparc")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
  FILES_c += $(FILES_2D_vis)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
  ASFLAGS += -P
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
  FILES_s += mlib_v_ImageCopy_blk.s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
  INLINE_VIS = $(PLATFORM_SRC)/native/sun/awt/medialib/vis_$(ARCH_DATA_MODEL).il
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
  CFLAGS_sparcv9 = -DMLIB_OS64BIT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
  
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
  CFLAGS += $(CFLAGS_$(ARCH)) -DMLIB_ADD_SUFF $(INLINE_VIS) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
	    -I$(SHARE_SRC)/native/sun/awt/medialib \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
	    -I$(PLATFORM_SRC)/native/sun/awt/medialib \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
	    -I$(PLATFORM_SRC)/native/sun/java2d/loops
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
vpath %.c  $(PLATFORM_SRC)/native/sun/java2d/loops
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
vpath %.c  $(SHARE_SRC)/native/sun/awt/medialib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
vpath %.c  $(PLATFORM_SRC)/native/sun/awt/medialib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
vpath %.s  $(PLATFORM_SRC)/native/sun/awt/medialib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
  FILES_c += MapAccelFunc.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SOLARIS-SPARC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
# Resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
LOCALE_SET_DEFINITION = jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
  RESOURCE_BUNDLES_COMPILED_PROPERTIES += \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
	sun/awt/windows/awtLocalization.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
# Rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
  FILES_m = mapfile-vers-linux
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
  # libawt.so on Linux is statically linked with Motif and contains all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
  # Xm symbols. Mapfile is disabled so the symbols will remain public.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
  LDNOMAP=true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
include $(BUILDDIR)/common/Mapfile-vers.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
include $(BUILDDIR)/common/Library.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
build: fontconfigs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
# Additional dependencies.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
# If make.depend is not working correctly, then it can be omitted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
# if you always build from a clean workspace. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
include make.depend
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
# required additional rules:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv SOLARIS/LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
build: dgalibs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SOLARIS/LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
clobber clean:: java2d.clean fontconfigs.clean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
clobber clean:: dgalib.clean 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
java2d.clean:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
	$(RM) -r $(CLASSBINDIR)/sun/java2d .classes.*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
# Add to the ambient vpath to pick up files in subdirectories
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image/gif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image/cvutils
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/medialib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/debug
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/loops
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/pipe
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
vpath %.cpp $(SHARE_SRC)/native/$(PKGDIR)/image
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
vpath %.cpp   $(PLATFORM_SRC)/native/sun/windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
vpath %.cpp   $(PLATFORM_SRC)/native/$(PKGDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
vpath %.cpp   $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
vpath %.cpp   $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/d3d
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
vpath %.c     $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/opengl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
vpath %.c     $(SHARE_SRC)/native/$(PKGDIR)/../java2d/opengl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
vpath %.c     $(SHARE_SRC)/native/$(PKGDIR)/../font
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/opengl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
vpath %.c   $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/opengl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
vpath %.c   $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/x11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../font
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
OTHER_LDLIBS = kernel32.lib user32.lib gdi32.lib winspool.lib \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
               imm32.lib ole32.lib uuid.lib $(JVMLIB) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
               shell32.lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
clean:: awt.clean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
awt.clean: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
	$(RM) $(TEMPDIR)/awt.ico 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
	$(RM) $(TEMPDIR)/awt.res 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
	$(RM) $(TEMPDIR)/hand.cur 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
	$(RM) $(TEMPDIR)/check.bmp
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv SOLARIS/LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
LIBXTST = -lXtst
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
# Use -lXmu for EditRes support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
LIBXMU_DBG	= -lXmu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
LIBXMU_OPT	=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
LIBXMU	        = $(LIBXMU_$(VARIANT))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
# Extra C flags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
# Solaris X11 Direct Graphics Access library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
_DGALIBS_sparc = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
	libxinerama.so \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
	libjdgaSUNWcg6.so \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
	libjdgaSUNWffb.so \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
	libjdgaSUNWm64.so \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
	libjdgaSUNWafb.so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
_DGALIBS_sparcv9 = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
	libxinerama.so \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
	libjdgaSUNWcg6.so \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
	libjdgaSUNWffb.so \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
	libjdgaSUNWm64.so \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
	libjdgaSUNWafb.so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
_DGALIBS_i586 = 	# no i586 library yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
_DGALIBS_amd64 = 	# no amd64 library yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
DGALIBS = $(_DGALIBS_$(ARCH):%=$(LIBDIR)/$(LIBARCH)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
dgalibs: $(DGALIBS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
$(LIBDIR)/$(LIBARCH)/libxinerama.so: $(CLOSED_SRC)/solaris/lib/$(ARCH)/libxinerama.so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
	$(CHMOD) a+x $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
$(LIBDIR)/$(LIBARCH)/libjdgaSUNW%.so: $(CLOSED_SRC)/solaris/lib/$(ARCH)/libjdgaSUNW%.so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
	$(CHMOD) a+x $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
$(LIBDIR)/$(LIBARCH)/libjdgaSUNWafb.so: $(LIBDIR)/$(LIBARCH)/libjdgaSUNWffb.so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
	$(LN) -s libjdgaSUNWffb.so $(LIBDIR)/$(LIBARCH)/libjdgaSUNWafb.so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
clean:: dgalib.clean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
dgalib.clean:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
	$(RM) $(LIBDIR)/$(LIBARCH)/libjdgaSUNW* $(LIBDIR)/$(LIBARCH)/libxinerama.so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SOLARIS/LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
# Font configs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
FONTCONFIGS_SRC = $(PLATFORM_SRC)/classes/sun/awt/windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
_FONTCONFIGS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        fontconfig.properties \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        fontconfig.98.properties 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
FONTCONFIGS_SRC_PREFIX =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
ifdef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
FONTCONFIGS_SRC	= $(PLATFORM_SRC)/classes/sun/awt/fontconfigs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
_FONTCONFIGS	= \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
	fontconfig.properties				\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
	fontconfig.SuSE.properties                      \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
	fontconfig.Ubuntu.properties                    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
	fontconfig.Fedora.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
FONTCONFIGS_SRC	= $(CLOSED_SRC)/solaris/classes/sun/awt/fontconfigs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
_FONTCONFIGS	= \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
	fontconfig.properties				\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
	fontconfig.RedHat.properties			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
	fontconfig.RedHat.2.1.properties		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
	fontconfig.RedHat.3.properties		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
	fontconfig.RedHat.4.properties			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
	fontconfig.Sun.properties			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
	fontconfig.Turbo.properties			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
	fontconfig.SuSE.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
FONTCONFIGS_SRC_PREFIX = $(PLATFORM).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv SOLARIS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
FONTCONFIGS_SRC	= $(PLATFORM_SRC)/classes/sun/awt/fontconfigs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
_FONTCONFIGS	= \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
	fontconfig.properties	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
	fontconfig.5.9.properties	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
	fontconfig.5.8.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
FONTCONFIGS_SRC_PREFIX = $(PLATFORM).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SOLARIS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
FONTCONFIGS     = $(_FONTCONFIGS:%=$(LIBDIR)/%.src)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
BINARYFONTCONFIGS = $(_FONTCONFIGS:%.properties=$(LIBDIR)/%.bfc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
fontconfigs: $(FONTCONFIGS) $(BINARYFONTCONFIGS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
$(LIBDIR)/%.src: $(FONTCONFIGS_SRC)/$(FONTCONFIGS_SRC_PREFIX)%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
	$(install-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
COMPILEFONTCONFIG_JARFILE = $(BUILDTOOLJARDIR)/compilefontconfig.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
$(LIBDIR)/%.bfc: $(FONTCONFIGS_SRC)/$(FONTCONFIGS_SRC_PREFIX)%.properties \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    $(COMPILEFONTCONFIG_JARFILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
	$(BOOT_JAVA_CMD) -jar $(COMPILEFONTCONFIG_JARFILE) $< $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
	$(CHMOD) 444 $(@)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
fontconfigs.clean :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
	$(RM) $(FONTCONFIGS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
	$(RM) $(BINARYFONTCONFIGS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
OTHER_CFLAGS += $(GX_OPTION) -DUNICODE -D_UNICODE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
ifeq ($(MILESTONE), internal)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
  CPPFLAGS += -DINTERNAL_BUILD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
# Useful variables that name parts of the src tree.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
WINAWT_native        = $(PLATFORM_SRC)/native/sun/windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
WINAWT_COMMON_native = $(PLATFORM_SRC)/native/sun/awt_common
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
# FIXME: awt shouldn't have to see the VM's private headers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
# FIXME: if you re-order this list, the build breaks, possibly because 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
#        of filename collision. Such a collision, if present, is pure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
#        evil. Need to investigate this.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
OTHER_INCLUDES += -I$(CLASSHDRDIR)/../../java/jvm \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
	-I$(OBJDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
	-I$(SHARE_SRC)/native/common \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
	-I$(WINAWT_native) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
	-I$(DXSDK_INCLUDE_PATH) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
	-I$(SHARE_SRC)/native/sun/awt/image/cvutils \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
	-I$(SHARE_SRC)/native/sun/awt/image \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
	-I$(SHARE_SRC)/native/sun/java2d/loops \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
	-I$(SHARE_SRC)/native/sun/java2d \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
	-I$(PLATFORM_SRC)/native/sun/java2d \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
	-I$(SHARE_SRC)/native/sun/java2d/opengl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
	-I$(PLATFORM_SRC)/native/sun/java2d/d3d \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
	-I$(PLATFORM_SRC)/native/sun/java2d/opengl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
	-I$(PLATFORM_SRC)/native/sun/java2d/windows \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
	-I$(SHARE_SRC)/native/sun/font \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
	-I$(SHARE_SRC)/native/sun/java2d/pipe \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
	-I$(SHARE_SRC)/native/sun/dc/path \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
	-I$(SHARE_SRC)/native/sun/dc/doe \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
	-I$(SHARE_SRC)/native/sun/awt/debug \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
	-I$(PLATFORM_SRC)/native/sun/awt \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
#	-I$(WINAWT_COMMON_native)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
# this is only required for compiling )/native/sun/awt/medialib/*.c files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
OTHER_INCLUDES += -I$(SHARE_SRC)/native/sun/awt/medialib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
# .res file construction.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
ifdef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    RC_FLAGS += -i "$(PLATFORM_SRC)/resource/icons"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    RC_FLAGS += -i "$(CLOSED_SRC)/windows/native/sun/windows"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
VERSIONINFO_RESOURCE = $(WINAWT_native)/awt.rc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv SOLARIS/LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
# Other extra flags needed for compiling.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
CPPFLAGS += -I$(OPENWIN_HOME)/include \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            -I$(OPENWIN_HOME)/include/X11/extensions \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/font 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
CPPFLAGS += -I$(SHARE_SRC)/native/$(PKGDIR)/debug \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            -I$(SHARE_SRC)/native/$(PKGDIR)/../font \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../font \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            -I$(SHARE_SRC)/native/$(PKGDIR)/image \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
	    -I$(SHARE_SRC)/native/$(PKGDIR)/image/cvutils \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
	    -I$(SHARE_SRC)/native/$(PKGDIR)/shell \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            -I$(SHARE_SRC)/native/$(PKGDIR)/medialib \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/medialib \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
	    -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/loops \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/pipe \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/opengl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
	    -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/opengl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
	    -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/x11 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../dc/doe \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../dc/path \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../jdga \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            -I$(PLATFORM_SRC)/native/$(PKGDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
	    $(EVENT_MODEL)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
LDFLAGS += -L$(OPENWIN_LIB)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
LDFLAGS += -L$(LIBDIR)/$(LIBARCH)/$(TSOBJDIR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
	   $(AWT_RUNPATH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SOLARIS/LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
CLASSES.export += java.io.InputStream \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
		  java.lang.Integer \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
		  java.lang.ThreadGroup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
.PHONY: dgalibs dgalib.clean fontconfigs fontconfigs.clean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516