- Timestamp:
- Jun 19, 2010, 12:21:06 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalEnv.tpl.cmd
r19 r29 43 43 44 44 /** 45 * Generate include file dependencies for C/C++ sources. 46 */ 47 call EnvSet 'INCREMENTAL_BUILD', 'true' 48 49 /** 45 50 * Here you may put any additional environment variable definitions needed for 46 51 * your local environment or for the OpenJDK make files using the form shown -
trunk/openjdk/jdk/make/common/Defs-os2.gmk
r27 r29 42 42 LIB_LOCATION = $(BINDIR) 43 43 endif # LIB_LOCATION 44 45 # Part of INCREMENTAL_BUILD mechanism. 46 # Compiler emits things like: file.obj: file.c file.h... 47 # We want something like: obj_path/file.obj: file.c file.h... 48 CC_DEPEND = -MM -MT $(@:$(suffix $@)=.$(OBJECT_SUFFIX)) 49 CC_DEPEND_FILTER = 44 50 45 51 ifndef PLATFORM_SRC -
trunk/openjdk/jdk/make/common/shared/Defs-os2.gmk
r27 r29 49 49 # Indication that we are doing an incremental build. 50 50 # This may trigger the creation of make depend files. 51 # (This may not be working on windows yet, always force to false.) 52 override INCREMENTAL_BUILD = false 51 ifndef INCREMENTAL_BUILD 52 INCREMENTAL_BUILD = false 53 endif 53 54 54 55 # FullPath just makes sure it never ends with a / and no duplicates
Note:
See TracChangeset
for help on using the changeset viewer.