jdk-24/jdk/makefiles/common/shared/PrivateDefs.gmk-example
Fredrik Ohstrom e32ab98b32 7074397: Build infrastructure changes (makefile re-write)
New makefiles transition, old and new living side by side for now.

Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: Magnus Ihse Bursie <magnus.ihse.bursie@oracle.com>
Co-authored-by: Torbjorn Granat <torbjorn.granat@oracle.com>
Co-authored-by: Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
Reviewed-by: ohair, jjg, dholmes, ohrstrom, erikj, ihse, tgranat, ykantser
2012-04-10 08:22:03 -07:00

20 lines
613 B
Plaintext

# This file, when re-named to PrivateDefs.gmk will get included in the
# makefile definitions (before the ALT_ variables are read) so that you can
# override makefile settings permanently for a workspace.
# Use of this file will cause WARNING errors, repeatedly, for a reason.
#
# WARNING: Use with caution.
#
# EXAMPLE: Testing a special build of hotspot
# (this is the build/solaris/export-solaris-sparc directory from doing
# a 'cd hotspot/make; gnumake' build)
#
ifeq ($(PLATFORM),solaris)
ifeq ($(ARCH),sparc)
ALT_HOTSPOT_IMPORT_PATH=$(JDK_TOPDIR)/../export-solaris-sparc
endif
endif