jdk/make/common/shared/PrivateDefs.gmk-example
author sherman
Tue, 22 Jan 2013 21:02:06 -0800
changeset 15173 b4b4893c6b4d
parent 2 90ce3da70b43
permissions -rw-r--r--
8003680: JSR 310 Date/Time API Summary: Integration of JSR310 Date/Time API for M6 Reviewed-by: alanb, naoto, dholmes Contributed-by: scolebourne@joda.org, roger.riggs@oracle.com, richard.warburton@gmail.com, misterm@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# This file, when re-named to PrivateDefs.gmk will get included in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
#   makefile definitions (before the ALT_ variables are read) so that you can
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#   override makefile settings permanently for a workspace.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
#   Use of this file will cause WARNING errors, repeatedly, for a reason.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# WARNING: Use with caution.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# EXAMPLE: Testing a special build of hotspot
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
#    (this is the build/solaris/export-solaris-sparc directory from doing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
#     a 'cd hotspot/make; gnumake' build)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
ifeq ($(PLATFORM),solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
  ifeq ($(ARCH),sparc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
    ALT_HOTSPOT_IMPORT_PATH=$(JDK_TOPDIR)/../export-solaris-sparc
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19