common/autoconf/spec.gmk.in

Print this page




 537 
 538 FIXPATH:=@FIXPATH@
 539 
 540 # Where the build output is stored for your convenience.
 541 BUILD_LOG:=@BUILD_LOG@
 542 BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@
 543 # Disable the build log wrapper on sjavac+winapi until
 544 # we have solved how to prevent the log wrapper to wait
 545 # for the background sjavac server process.
 546 ifeq (@ENABLE_SJAVAC@X@OPENJDK_BUILD_OS_API@,yesXwinapi)
 547   BUILD_LOG_WRAPPER:=
 548 else
 549   BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@
 550 endif
 551 
 552 # Build setup
 553 ENABLE_JFR=@ENABLE_JFR@
 554 ENABLE_INTREE_EC=@ENABLE_INTREE_EC@
 555 USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@
 556 USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@

 557 USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@
 558 LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@
 559 MSVCR_DLL:=@MSVCR_DLL@
 560 
 561 
 562 # ADD_SRCS takes a single argument with source roots
 563 # and appends any corresponding source roots found
 564 # below --with-add-source-root and below
 565 # --with-override-source-root. It is the responsibility
 566 # of the next macro to get rid of superfluous files.
 567 ADD_SRCS=$1
 568 ifneq (,$(ADD_SRC_ROOT))
 569   # Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT
 570   ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1))
 571 endif
 572 ifneq (,$(OVERRIDE_SRC_ROOT))
 573   # Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT
 574   ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1))
 575 endif
 576 




 537 
 538 FIXPATH:=@FIXPATH@
 539 
 540 # Where the build output is stored for your convenience.
 541 BUILD_LOG:=@BUILD_LOG@
 542 BUILD_LOG_PREVIOUS:=@BUILD_LOG_PREVIOUS@
 543 # Disable the build log wrapper on sjavac+winapi until
 544 # we have solved how to prevent the log wrapper to wait
 545 # for the background sjavac server process.
 546 ifeq (@ENABLE_SJAVAC@X@OPENJDK_BUILD_OS_API@,yesXwinapi)
 547   BUILD_LOG_WRAPPER:=
 548 else
 549   BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@
 550 endif
 551 
 552 # Build setup
 553 ENABLE_JFR=@ENABLE_JFR@
 554 ENABLE_INTREE_EC=@ENABLE_INTREE_EC@
 555 USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@
 556 USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@
 557 USE_EXTERNAL_LIBPNG:=@USE_EXTERNAL_LIBPNG@
 558 USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@
 559 LIBZIP_CAN_USE_MMAP:=@LIBZIP_CAN_USE_MMAP@
 560 MSVCR_DLL:=@MSVCR_DLL@
 561 
 562 
 563 # ADD_SRCS takes a single argument with source roots
 564 # and appends any corresponding source roots found
 565 # below --with-add-source-root and below
 566 # --with-override-source-root. It is the responsibility
 567 # of the next macro to get rid of superfluous files.
 568 ADD_SRCS=$1
 569 ifneq (,$(ADD_SRC_ROOT))
 570   # Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT
 571   ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1))
 572 endif
 573 ifneq (,$(OVERRIDE_SRC_ROOT))
 574   # Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT
 575   ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1))
 576 endif
 577