Changeset 27 for trunk/openjdk/Makefile
- Timestamp:
- Jun 17, 2010, 4:08:35 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/Makefile
r2 r27 116 116 endif 117 117 118 build:: sanity 118 build:: sanity 119 119 120 120 clobber:: … … 141 141 142 142 ifeq ($(BUILD_HOTSPOT), true) 143 build:: $(HOTSPOT) 143 build:: $(HOTSPOT) 144 144 clobber:: hotspot-clobber 145 145 endif … … 168 168 # ALT_OUTPUTDIR is changed to have -debug or -fastdebug suffix 169 169 # The resulting j2sdk-image is used by the install makefiles to create a 170 # debug install bundle jdk-*-debug-** bundle (tar or zip) 170 # debug install bundle jdk-*-debug-** bundle (tar or zip) 171 171 # which will install in the debug or fastdebug subdirectory of the 172 172 # normal product install area. … … 281 281 @$(ECHO) "=================================================" 282 282 @$(ECHO) " " 283 283 284 284 endif 285 285 endif … … 294 294 clean: clobber 295 295 296 all:: 296 all:: 297 297 @$(ECHO) Control build finished: `$(DATE) '+%y-%m-%d %H:%M'` 298 298 … … 384 384 MSDEVTOOLS_PATH.desc = Root directory of VC++ tools (e.g. rc.exe) 385 385 MSVCRT_DLL_PATH.desc = Directory containing mscvrt.dll 386 ODINSDK_PATH.desc = Root directory of Odin32 SDK (OS/2) 386 387 387 388 # Make variables to print out (description and value) … … 402 403 JDK_IMPORT_PATH \ 403 404 COMPILER_PATH \ 404 DEVTOOLS_PATH 405 DEVTOOLS_PATH 405 406 406 407 # Make variables that should refer to files that exist … … 420 421 MSDEVTOOLS_PATH \ 421 422 MSVCRT_DLL_PATH 423 424 endif 425 426 # Some are OS/2 specific 427 ifeq ($(PLATFORM), os2) 428 429 VARIABLE_PRINTVAL_LIST += \ 430 ODINSDK_PATH 431 432 VARIABLE_CHECKDIR_LIST += \ 433 ODINSDK_PATH 422 434 423 435 endif … … 483 495 # Cycle build. Build the jdk, use it to build the jdk again. 484 496 ################################################################ 485 497 486 498 ABS_BOOTDIR_OUTPUTDIR=$(ABS_OUTPUTDIR)/bootjdk 487 499 488 500 boot_cycle: 489 501 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) product_build
Note:
See TracChangeset
for help on using the changeset viewer.