< prev index next >

common/autoconf/spec.gmk.in

Print this page




 562 # Where the build output is stored for your convenience.
 563 BUILD_LOG:=@BUILD_LOG@
 564 BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@
 565 # Disable the build log wrapper on sjavac+windows until
 566 # we have solved how to prevent the log wrapper to wait
 567 # for the background sjavac server process.
 568 ifeq (@ENABLE_SJAVAC@X@OPENJDK_BUILD_OS@,yesXwindows)
 569   BUILD_LOG_WRAPPER:=
 570 else
 571   BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@
 572 endif
 573 
 574 # Build setup
 575 ENABLE_JFR=@ENABLE_JFR@
 576 ENABLE_INTREE_EC=@ENABLE_INTREE_EC@
 577 USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@
 578 USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@
 579 USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@
 580 LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@
 581 MSVCR_DLL:=@MSVCR_DLL@

 582 
 583 
 584 # ADD_SRCS takes a single argument with source roots
 585 # and appends any corresponding source roots found
 586 # below --with-add-source-root and below
 587 # --with-override-source-root. It is the responsibility
 588 # of the next macro to get rid of superfluous files.
 589 ADD_SRCS=$1
 590 ifneq (,$(ADD_SRC_ROOT))
 591   # Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT
 592   ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1))
 593 endif
 594 ifneq (,$(OVERRIDE_SRC_ROOT))
 595   # Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT
 596   ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1))
 597 endif
 598 
 599 # OVR_SRCS creates a filter expression to filter out sources in
 600 # the original source directory that lie inside directories below
 601 # --with-override-source-root.




 562 # Where the build output is stored for your convenience.
 563 BUILD_LOG:=@BUILD_LOG@
 564 BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@
 565 # Disable the build log wrapper on sjavac+windows until
 566 # we have solved how to prevent the log wrapper to wait
 567 # for the background sjavac server process.
 568 ifeq (@ENABLE_SJAVAC@X@OPENJDK_BUILD_OS@,yesXwindows)
 569   BUILD_LOG_WRAPPER:=
 570 else
 571   BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@
 572 endif
 573 
 574 # Build setup
 575 ENABLE_JFR=@ENABLE_JFR@
 576 ENABLE_INTREE_EC=@ENABLE_INTREE_EC@
 577 USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@
 578 USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@
 579 USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@
 580 LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@
 581 MSVCR_DLL:=@MSVCR_DLL@
 582 MSVCP_DLL:=@MSVCP_DLL@
 583 
 584 
 585 # ADD_SRCS takes a single argument with source roots
 586 # and appends any corresponding source roots found
 587 # below --with-add-source-root and below
 588 # --with-override-source-root. It is the responsibility
 589 # of the next macro to get rid of superfluous files.
 590 ADD_SRCS=$1
 591 ifneq (,$(ADD_SRC_ROOT))
 592   # Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT
 593   ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1))
 594 endif
 595 ifneq (,$(OVERRIDE_SRC_ROOT))
 596   # Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT
 597   ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1))
 598 endif
 599 
 600 # OVR_SRCS creates a filter expression to filter out sources in
 601 # the original source directory that lie inside directories below
 602 # --with-override-source-root.


< prev index next >