author | ohair |
Tue, 25 May 2010 15:58:33 -0700 | |
changeset 5506 | 202f599c92aa |
parent 4665 | d14dc3d9e1fa |
child 6814 | c6e347fb5b20 |
permissions | -rw-r--r-- |
2 | 1 |
# |
5506 | 2 |
# Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
# |
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
5506 | 21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
2 | 24 |
# |
25 |
||
26 |
# |
|
27 |
# Makefile for building the generic version of medialib |
|
28 |
# |
|
29 |
||
30 |
BUILDDIR = ../../.. |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
1247
diff
changeset
|
31 |
MODULE = media |
2 | 32 |
PACKAGE = sun.awt.medialib |
33 |
LIBRARY = mlib_image |
|
34 |
PRODUCT = sun |
|
35 |
||
36 |
# Use highest level of optimization on this library |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
2
diff
changeset
|
37 |
OPTIMIZATION_LEVEL = HIGHEST |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
2
diff
changeset
|
38 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
2
diff
changeset
|
39 |
include $(BUILDDIR)/common/Defs.gmk |
2 | 40 |
|
41 |
# |
|
42 |
# Use mapfile |
|
43 |
# |
|
44 |
FILES_m = mapfile-vers |
|
45 |
include $(BUILDDIR)/common/Mapfile-vers.gmk |
|
46 |
||
47 |
# |
|
48 |
# Files |
|
49 |
# |
|
50 |
include FILES_c.gmk |
|
51 |
||
52 |
# |
|
53 |
# Rules |
|
54 |
# |
|
55 |
include $(BUILDDIR)/common/Library.gmk |
|
56 |
||
57 |
# |
|
58 |
# set compile options for solaris 32- or 64-bit build |
|
59 |
# |
|
60 |
ifeq ($(ARCH_DATA_MODEL), 64) |
|
61 |
CFLAGS += -DMLIB_OS64BIT |
|
62 |
endif # ARCH_DATA_MODEL |
|
63 |
||
64 |
ifneq ($(PLATFORM), sparc) |
|
65 |
OTHER_CFLAGS += -DMLIB_NO_LIBSUNMATH |
|
66 |
endif |
|
67 |
||
68 |
CPPFLAGS += \ |
|
69 |
-I$(PLATFORM_SRC)/native/$(PKGDIR)/medialib |
|
70 |
||
71 |
OTHER_CFLAGS += -D__USE_J2D_NAMES -D__MEDIALIB_OLD_NAMES |
|
72 |
OTHER_LDLIBS = $(LIBM) -ldl |
|
73 |