Changeset 302 for trunk/openjdk
- Timestamp:
- Jun 27, 2011, 5:52:43 PM (14 years ago)
- Location:
- trunk/openjdk/hotspot/make/os2/makefiles
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/make/os2/makefiles/generated.make
r43 r302 35 35 36 36 ifeq ($(filter-out compiler2 tiered,$(Variant)),) 37 default:: includeDB.current Dependenciesincls/ad_$(Platform_arch_model).cpp incls/dfa_$(Platform_arch_model).cpp $(JvmtiGeneratedFiles)37 default:: includeDB.current incls/ad_$(Platform_arch_model).cpp incls/dfa_$(Platform_arch_model).cpp $(JvmtiGeneratedFiles) 38 38 else 39 default:: includeDB.current Dependencies$(JvmtiGeneratedFiles)39 default:: includeDB.current $(JvmtiGeneratedFiles) 40 40 endif 41 41 … … 79 79 endif 80 80 81 includeDB.current Dependencies: classes/MakeDeps.class $(IncludeDBs)81 includeDB.current: classes/MakeDeps.class $(IncludeDBs) 82 82 cat $(IncludeDBs) > includeDB 83 83 if [ -d incls ]; then rm -rf incls; fi -
trunk/openjdk/hotspot/make/os2/makefiles/shared.make
r222 r302 31 31 endif 32 32 33 MAKE_JOBS= 34 ifdef HOTSPOT_BUILD_JOBS 35 MAKE_JOBS=-j$(HOTSPOT_BUILD_JOBS) 36 endif 37 33 38 ifdef SUBDIRS 34 39 $(SUBDIRS): FORCE … … 36 41 if [ ! -r $@/local.make ]; then echo \# Empty > $@/local.make; fi; \ 37 42 echo $(MAKE) $(ACTION) in $(DIR)/$@; \ 38 cd $@; $(MAKE) -f $(WorkSpace)/make/os2/makefiles/$@.make $(ACTION) DIR=$(DIR)/$@ BUILD_FLAVOR=$(BUILD_FLAVOR)43 cd $@; $(MAKE) $(MAKE_JOBS) -f $(WorkSpace)/make/os2/makefiles/$@.make $(ACTION) DIR=$(DIR)/$@ BUILD_FLAVOR=$(BUILD_FLAVOR) 39 44 endif 40 45 … … 58 63 $(DEFAULTACTIONS) $(ACTIONS):: 59 64 ifdef SUBDIRS 60 @$(MAKE) ACTION=$@ DIR=$(DIR)65 @$(MAKE) $(MAKE_JOBS) ACTION=$@ DIR=$(DIR) 61 66 endif 62 67
Note:
See TracChangeset
for help on using the changeset viewer.