jdk/makefiles/common/shared/PrivateDefs.gmk-example
changeset 13164 72c5d01a857d
parent 13082 9b19b2302c28
child 13167 efec101d7d87
equal deleted inserted replaced
13082:9b19b2302c28 13164:72c5d01a857d
     1 
       
     2 # This file, when re-named to PrivateDefs.gmk will get included in the
       
     3 #   makefile definitions (before the ALT_ variables are read) so that you can
       
     4 #   override makefile settings permanently for a workspace.
       
     5 #   Use of this file will cause WARNING errors, repeatedly, for a reason.
       
     6 #
       
     7 # WARNING: Use with caution.
       
     8 #
       
     9 
       
    10 # EXAMPLE: Testing a special build of hotspot
       
    11 #    (this is the build/solaris/export-solaris-sparc directory from doing
       
    12 #     a 'cd hotspot/make; gnumake' build)
       
    13 #
       
    14 ifeq ($(PLATFORM),solaris)
       
    15   ifeq ($(ARCH),sparc)
       
    16     ALT_HOTSPOT_IMPORT_PATH=$(JDK_TOPDIR)/../export-solaris-sparc
       
    17   endif
       
    18 endif
       
    19