author | lana |
Wed, 11 Apr 2012 18:44:33 -0700 | |
changeset 12408 | 8e95f7b85140 |
parent 9035 | 1255eb81cc2f |
child 16834 | 7bf172159b07 |
permissions | -rw-r--r-- |
2 | 1 |
# |
9035
1255eb81cc2f
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
8583
diff
changeset
|
2 |
# Copyright (c) 2006, 2011, 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 |
BUILDDIR = ../.. |
|
27 |
PRODUCT = sun |
|
28 |
include $(BUILDDIR)/common/Defs.gmk |
|
29 |
||
30 |
ifdef OPENJDK |
|
31 |
SUBDIRS += lcms |
|
32 |
ICCPROFILE_SRC_DIR = $(SHARE_SRC)/lib/cmm/lcms |
|
33 |
else # !OPENJDK |
|
34 |
SUBDIRS += kcms |
|
35 |
ICCPROFILE_SRC_DIR = $(CLOSED_SRC)/share/lib/cmm/kcms |
|
36 |
endif # OPENJDK |
|
37 |
||
4917
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4665
diff
changeset
|
38 |
include $(BUILDDIR)/common/Subdirs.gmk |
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4665
diff
changeset
|
39 |
|
2 | 40 |
# |
41 |
# ICC Profiles used by the CMM. |
|
42 |
# |
|
43 |
ICCPROFILE_DEST_DIR = $(LIBDIR)/cmm |
|
44 |
||
45 |
iccprofiles: $(ICCPROFILE_DEST_DIR)/sRGB.pf $(ICCPROFILE_DEST_DIR)/GRAY.pf \ |
|
544
9e8d4d0c3d77
6523403: Need to provide lcms library with PYCC and LINEAR_RGB OS ICC profiles
prr
parents:
2
diff
changeset
|
46 |
$(ICCPROFILE_DEST_DIR)/CIEXYZ.pf $(ICCPROFILE_DEST_DIR)/PYCC.pf \ |
9e8d4d0c3d77
6523403: Need to provide lcms library with PYCC and LINEAR_RGB OS ICC profiles
prr
parents:
2
diff
changeset
|
47 |
$(ICCPROFILE_DEST_DIR)/LINEAR_RGB.pf |
2 | 48 |
|
49 |
$(ICCPROFILE_DEST_DIR)/sRGB.pf: $(ICCPROFILE_SRC_DIR)/sRGB.pf |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
50 |
$(install-file) |
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
51 |
$(call chmod-file, 444) |
2 | 52 |
|
53 |
$(ICCPROFILE_DEST_DIR)/GRAY.pf: $(ICCPROFILE_SRC_DIR)/GRAY.pf |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
54 |
$(install-file) |
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
55 |
$(call chmod-file, 444) |
2 | 56 |
|
57 |
$(ICCPROFILE_DEST_DIR)/CIEXYZ.pf: $(ICCPROFILE_SRC_DIR)/CIEXYZ.pf |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
58 |
$(install-file) |
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
59 |
$(call chmod-file, 444) |
2 | 60 |
|
61 |
$(ICCPROFILE_DEST_DIR)/PYCC.pf: $(ICCPROFILE_SRC_DIR)/PYCC.pf |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
62 |
$(install-file) |
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
63 |
$(call chmod-file, 444) |
2 | 64 |
|
65 |
$(ICCPROFILE_DEST_DIR)/LINEAR_RGB.pf: $(ICCPROFILE_SRC_DIR)/LINEAR_RGB.pf |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
66 |
$(install-file) |
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
715
diff
changeset
|
67 |
$(call chmod-file, 444) |
2 | 68 |
|
69 |
iccprofiles.clean: |
|
70 |
$(RM) -r $(ICCPROFILE_DEST_DIR) |
|
71 |
||
72 |
||
73 |
clobber: iccprofiles.clean |
|
74 |
$(SUBDIRS-loop) |
|
75 |
||
76 |
clean: iccprofiles.clean |
|
77 |
$(SUBDIRS-loop) |
|
78 |
||
79 |
all build:: iccprofiles |
|
80 |
$(SUBDIRS-loop) |
|
81 |
||
82 |
openjdk:: |
|
83 |
$(MAKE) OPENJDK=true build |
|
84 |
||
85 |
.PHONY: iccprofiles iccprofiles.clean copy-files openjdk |