0N/A#
3909N/A# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
2362N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
2362N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
0N/A#
0N/A
0N/A# Settings and rules to validate the JDK build environment.
0N/A
0N/A.PHONY: \
0N/A pre-sanity \
0N/A sanity \
0N/A sanity-base \
0N/A sanity-docs \
0N/A sanity-images \
0N/A post-sanity-all \
0N/A post-sanity-docs \
0N/A post-sanity-images \
0N/A sanity-all
0N/A
0N/A# Bring in common sanity check rules
0N/Ainclude $(JDK_MAKE_SHARED_DIR)/Sanity.gmk
0N/A
0N/A# EXTERNALSANITYCONTROL means that this workspace build is being controlled by
0N/A# the control workspace, and that workspace is managing what is done to the sanity
0N/A# check files, and this sanity check run is only appending to those files.
0N/A
0N/Apre-sanity: $(SANITY_FILES)
0N/Aifndef EXTERNALSANITYCONTROL
0N/A @$(RM) $(SANITY_FILES)
0N/Aendif
0N/A
0N/Asanity-base: pre-sanity \
0N/A sane-settings \
0N/A sane-insane \
0N/A sane-make \
0N/A sane-build_number \
0N/A sane-os_version \
0N/A sane-makeflags \
0N/A sane-alt_outputdir \
0N/A sane-outputdir \
0N/A sane-devtools_path \
0N/A sane-compiler_path \
0N/A sane-unixcommand_path \
0N/A sane-usrbin_path \
0N/A sane-math_iso \
0N/A sane-libCrun \
0N/A sane-unixccs_path \
0N/A sane-odbcdir \
0N/A sane-msdevtools_path \
0N/A sane-dxsdk \
0N/A sane-compiler \
0N/A sane-cacerts \
0N/A sane-ant_version \
0N/A sane-zip_version \
3686N/A sane-msvcrt_path
0N/A
0N/A# The rules sanity-* have a one-to-one correspondence with the major targets
0N/A# Each sanity-* rule should have no body to ensure that the post-sanity-* is the
0N/A# last rule executed. The pre-sanity rule should be the first dependency. This design
0N/A# expects the execution of pre-sanity only once per gnumake command invocation,
0N/A# thus, info written to ERROR_FILE and/or WARNING_FILE will not be removed by subsequent
0N/A# targets in the same 'gnumake' command line.
0N/A
0N/Asanity-all:: sanity-base \
0N/A sane-classpath \
0N/A sane-java_home \
0N/A sane-fonts \
0N/A sane-variant \
0N/A sane-ld_library_path \
0N/A sane-ld_library_path_64 \
0N/A sane-ld_options \
0N/A sane-ld_run_path \
0N/A sane-alt_bootdir \
0N/A sane-bootdir \
1220N/A sane-local-bootdir \
1630N/A sane-alsa-headers
0N/A
0N/Aifdef OPENJDK
0N/Asanity-all:: sane-freetype
0N/Aendif
0N/A
0N/A
0N/A# Always check cups header paths on solaris & linux
0N/Aifneq ($(PLATFORM), windows)
0N/Asanity-all:: \
0N/A sane-cups
0N/Aendif
0N/A
0N/A# Always check hotspot binary paths even if we are building them from scratch
0N/AHOTSPOT_IMPORT_CHECK=true
0N/Aifeq ($(HOTSPOT_IMPORT_CHECK),true)
0N/Asanity-all:: \
0N/A sane-hotspot_binaries \
0N/A sane-hotspot_import
0N/Aendif
0N/A
0N/Asanity-docs: sanity-base sane-docs_import
0N/A
0N/Asanity-images:: sanity-base
0N/A
0N/Asanity:: sanity-all post-sanity
0N/A
0N/A# this should be the last rule in any target's sanity rule.
0N/Apost-sanity post-sanity-all post-sanity-docs post-sanity-images: sane-lastrule