jdk/makefiles/sun/cmm/Makefile
changeset 12317 9670c1610c53
equal deleted inserted replaced
12316:ba6b7a51e226 12317:9670c1610c53
       
     1 #
       
     2 # Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
       
     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
       
     7 # published by the Free Software Foundation.  Oracle designates this
       
     8 # particular file as subject to the "Classpath" exception as provided
       
     9 # by Oracle in the LICENSE file that accompanied this code.
       
    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 #
       
    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.
       
    24 #
       
    25 
       
    26 BUILDDIR = ../..
       
    27 PRODUCT  = sun
       
    28 include $(BUILDDIR)/common/Defs.gmk
       
    29 
       
    30 ifdef OPENJDK
       
    31     SUBDIRS +=
       
    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 
       
    38 include $(BUILDDIR)/common/Subdirs.gmk
       
    39 
       
    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 \
       
    46 #	     $(ICCPROFILE_DEST_DIR)/CIEXYZ.pf $(ICCPROFILE_DEST_DIR)/PYCC.pf \
       
    47 #	     $(ICCPROFILE_DEST_DIR)/LINEAR_RGB.pf
       
    48 
       
    49 $(ICCPROFILE_DEST_DIR)/sRGB.pf: $(ICCPROFILE_SRC_DIR)/sRGB.pf
       
    50 	$(install-file)
       
    51 	$(call chmod-file, 444)
       
    52 
       
    53 $(ICCPROFILE_DEST_DIR)/GRAY.pf: $(ICCPROFILE_SRC_DIR)/GRAY.pf
       
    54 	$(install-file)
       
    55 	$(call chmod-file, 444)
       
    56 
       
    57 $(ICCPROFILE_DEST_DIR)/CIEXYZ.pf: $(ICCPROFILE_SRC_DIR)/CIEXYZ.pf
       
    58 	$(install-file)
       
    59 	$(call chmod-file, 444)
       
    60 
       
    61 $(ICCPROFILE_DEST_DIR)/PYCC.pf: $(ICCPROFILE_SRC_DIR)/PYCC.pf
       
    62 	$(install-file)
       
    63 	$(call chmod-file, 444)
       
    64 
       
    65 $(ICCPROFILE_DEST_DIR)/LINEAR_RGB.pf: $(ICCPROFILE_SRC_DIR)/LINEAR_RGB.pf
       
    66 	$(install-file)
       
    67 	$(call chmod-file, 444)
       
    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