mawt.gmk 7.5 KB
Newer Older
D
duke 已提交
1
#
2
# Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
7
# published by the Free Software Foundation.  Oracle designates this
D
duke 已提交
8
# particular file as subject to the "Classpath" exception as provided
9
# by Oracle in the LICENSE file that accompanied this code.
D
duke 已提交
10 11 12 13 14 15 16 17 18 19 20
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
21 22 23
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
D
duke 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#

#
# to create directory:
#
INIT += $(LIB_LOCATION) 

#
# Files
#
# mawt.gmk is just used in building X/Motif native code, so
# this list of java files is no longer included.
#include FILES_java_unix.gmk
include $(BUILDDIR)/sun/awt/FILES_c_unix.gmk

include $(BUILDDIR)/sun/awt/FILES_export_unix.gmk

# Check which C files should be built.  Headless uses only
# non-motif files.  Also, a version-specific motif file is
# compiled based on the motif version.
44
FILES_c = $(FILES_NO_MOTIF_c)
D
duke 已提交
45

46 47 48 49
ifeq ($(PLATFORM), macosx)
FILES_objc = $(FILES_NO_MOTIF_objc)
endif # PLATFORM

D
duke 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
ifeq ($(PLATFORM), solaris)
  ifneq ($(ARCH), amd64)
    FILES_reorder += reorder-$(ARCH)
  endif
endif

#
# Rules
#

# Class files should be built & clobbered in make/sun/awt
# If removing this line, also reinclude sun_awt.jmk
DONT_CLOBBER_CLASSES = true


ifndef HEADLESS
ifeq ($(VARIANT), OPT)
FILES_m = ../awt/mapfile-mawt-vers
endif
endif

# Since this library will be living in a subdirectory below the other libraries
#   we need to add an extra runpath so that libraries in the upper directory
#   are found at runtime.
LD_RUNPATH_EXTRAS = ..

include $(BUILDDIR)/common/Mapfile-vers.gmk
include $(BUILDDIR)/common/Library.gmk

$(LIB_LOCATION):
	$(MKDIR) -p $@

clean:: 

#
# Add to the ambient vpath to pick up files in subdirectories
#
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/alphacomposite
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image/gif
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/image/cvutils
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/shell
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/medialib
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/opengl
vpath %.c   $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/opengl
vpath %.c   $(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/x11
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/debug
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../font
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/loops
vpath %.c   $(SHARE_SRC)/native/$(PKGDIR)/../java2d/pipe
vpath %.cpp $(SHARE_SRC)/native/$(PKGDIR)/image
vpath %.c   $(PLATFORM_SRC)/native/$(PKGDIR)/robot_child

104 105 106 107
ifeq ($(PLATFORM), macosx)
vpath %.m   $(call NativeSrcDirList,,native/sun/font)
endif # PLATFORM

D
duke 已提交
108 109 110 111 112
#
# Libraries to link in.
#


113 114 115
ifeq ($(DEBUG_BINARIES), true)
  CFLAGS += -g
endif
D
duke 已提交
116 117 118 119 120 121
ifeq ($(HEADLESS),true)
CFLAGS += -DHEADLESS=$(HEADLESS)
CPPFLAGS += -DHEADLESS=$(HEADLESS)
OTHER_LDLIBS =
else
LIBXTST = -lXtst
122 123 124 125 126 127
ifeq ($(PLATFORM), linux)
   ifeq ($(ARCH_DATA_MODEL), 64)
   # XXX what about the rest of them?
        LIBXT = -lXt
    else
    # Allows for builds on Debian GNU Linux, X11 is in a different place 
128
       LIBXT = $(firstword $(wildcard $(OPENWIN_LIB)/libXt.a) \
129
                        $(wildcard /usr/lib/libXt.a))
130
       LIBSM = $(firstword $(wildcard $(OPENWIN_LIB)/libSM.a) \
131
                        $(wildcard /usr/lib/libSM.a))
132
       LIBICE = $(firstword $(wildcard $(OPENWIN_LIB)/libICE.a) \
133
                         $(wildcard /usr/lib/libICE.a))
134
       LIBXTST = $(firstword $(wildcard $(OPENWIN_LIB)/libXtst.a) \
135 136 137
                         $(wildcard /usr/lib/libXtst.a))
   endif
endif
D
duke 已提交
138 139 140 141 142 143 144

# Use -lXmu for EditRes support
LIBXMU_DBG	= -lXmu
LIBXMU_OPT	=
LIBXMU		= $(LIBXMU_$(VARIANT))

ifeq ($(PLATFORM), solaris)
145
OTHER_LDLIBS = -lXt -lXext $(LIBXTST) $(LIBXMU) -lX11 -lXi
D
duke 已提交
146 147
endif

148
ifneq (,$(findstring $(PLATFORM), linux macosx))
D
duke 已提交
149
OTHER_CFLAGS += -DMLIB_NO_LIBSUNMATH
150
# XXX what is this define below? Isn't it motif-related?
D
duke 已提交
151
OTHER_CFLAGS += -DXMSTRINGDEFINES=1
152
OTHER_LDLIBS =  $(LIBXMU) $(LIBXTST) -lXext $(LIBXT) $(LIBSM) $(LIBICE) -lX11 -lXi
D
duke 已提交
153 154 155 156 157 158
endif

endif
# !HEADLESS

OTHER_LDLIBS += $(JVMLIB) $(LIBCXX) \
159
                -lawt $(LIBM) $(LIBDL)
D
duke 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174

#
# Sun CC with -Xa misdefines __STDC__ to 0 (zero).
# The following will force checking of X11 prototypes.
# 
ifneq ($(CC_VERSION),gcc)
CPPFLAGS += -DFUNCPROTO=15
endif

#
# Other extra flags needed for compiling.
#
CPPFLAGS += -I$(CUPS_HEADERS_PATH)

ifndef HEADLESS
175 176
CPPFLAGS += -I$(OPENWIN_HOME)/include 
LDFLAGS  += -L$(OPENWIN_LIB)
D
duke 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201

endif # !HEADLESS

CPPFLAGS += -I$(SHARE_SRC)/native/$(PKGDIR)/debug \
            -I$(SHARE_SRC)/native/$(PKGDIR)/../font \
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../font \
            -I$(SHARE_SRC)/native/$(PKGDIR)/image \
	    -I$(SHARE_SRC)/native/$(PKGDIR)/image/cvutils \
	    -I$(SHARE_SRC)/native/$(PKGDIR)/shell \
	    -I$(SHARE_SRC)/native/$(PKGDIR)/alphacomposite \
            -I$(SHARE_SRC)/native/$(PKGDIR)/medialib \
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/medialib \
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d \
	    -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d \
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/loops \
	    -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/pipe \
            -I$(SHARE_SRC)/native/$(PKGDIR)/../java2d/opengl \
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/opengl \
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../java2d/x11 \
        -I$(SHARE_SRC)/native/$(PKGDIR)/../dc/doe \
        -I$(SHARE_SRC)/native/$(PKGDIR)/../dc/path \
            -I$(PLATFORM_SRC)/native/$(PKGDIR)/../jdga \
        -I$(PLATFORM_SRC)/native/$(PKGDIR) \
        $(EVENT_MODEL)

202
ifeq ($(PLATFORM), macosx)
203 204 205
CPPFLAGS += -I$(CUPS_HEADERS_PATH) \
			$(call NativeSrcDirList,-I,native/sun/awt) \
			$(call NativeSrcDirList,-I,native/sun/font)
206 207 208 209 210

ifndef HEADLESS
CPPFLAGS += -I$(MOTIF_DIR)/include \
            -I$(OPENWIN_HOME)/include 
LDFLAGS  += -L$(MOTIF_LIB) -L$(OPENWIN_LIB)
211 212 213 214 215 216 217
else
LDFLAGS  += -framework Accelerate \
			-framework ApplicationServices \
			-framework Cocoa \
			-F/System/Library/Frameworks/JavaVM.framework/Frameworks \
			-framework JavaNativeFoundation \
			-framework JavaRuntimeSupport
218 219 220
endif # !HEADLESS
endif # PLATFORM

D
duke 已提交
221
ifeq ($(PLATFORM), linux)
222 223 224
  # Checking for the X11/extensions headers at the additional location
  CPPFLAGS += -I$(firstword $(wildcard $(OPENWIN_HOME)/include/X11/extensions) \
                        $(wildcard /usr/include/X11/extensions))
D
duke 已提交
225 226
endif

227
ifeq ($(PLATFORM), macosx)
228 229 230 231
  CPPFLAGS += -I$(OPENWIN_HOME)/include/X11/extensions \
              -I$(OPENWIN_HOME)/include 
endif

D
duke 已提交
232 233 234 235
ifeq ($(PLATFORM), solaris)
  CPPFLAGS += -I$(OPENWIN_HOME)/include/X11/extensions
endif

236 237 238
ifeq ($(PLATFORM), macosx)
  CPPFLAGS += -DX11_PATH=\"$(X11_PATH)\" -DPACKAGE_PATH=\"$(PACKAGE_PATH)\"
endif
D
duke 已提交
239 240 241 242 243 244 245

LDFLAGS += -L$(LIBDIR)/$(LIBARCH)/$(TSOBJDIR) \
	   $(AWT_RUNPATH)

CLASSES.export += java.io.InputStream \
		  java.lang.ThreadGroup