Changeset 1418 in kBuild
- Timestamp:
- Mar 18, 2008 10:52:45 PM (17 years ago)
- Location:
- trunk/kBuild
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/header.kmk
r1416 r1418 838 838 export KBUILD_VERBOSE := 2 839 839 endif 840 endif 841 endif 842 843 844 # 845 # Legacy variable translation. 846 # These will be eliminated when switching to the next version. 847 # 848 ifdef USE_KOBJCACHE 849 ifndef KBUILD_USE_KOBJCACHE 850 export KBUILD_USE_KOBJCACHE := $(USE_KOBJCACHE) 840 851 endif 841 852 endif -
trunk/kBuild/tools/GCC3.kmk
r1349 r1418 105 105 TOOL_GCC3_COMPILE_C_DEPEND = 106 106 TOOL_GCC3_COMPILE_C_DEPORD = 107 ifdef USE_KOBJCACHE107 ifdef KBUILD_USE_KOBJCACHE 108 108 TOOL_GCC3_COMPILE_C_USES_KOBJCACHE = 1 109 109 TOOL_GCC3_COMPILE_C_OUTPUT = $(outbase).i … … 121 121 - 122 122 endef 123 else # ! USE_KOBJCACHE123 else # !KBUILD_USE_KOBJCACHE 124 124 TOOL_GCC3_COMPILE_C_OUTPUT = 125 125 define TOOL_GCC3_COMPILE_C_CMDS … … 130 130 $(abspath $(source)) 131 131 endef 132 endif # ! USE_KOBJCACHE132 endif # !KBUILD_USE_KOBJCACHE 133 133 134 134 … … 147 147 TOOL_GCC3_COMPILE_CXX_DEPEND = 148 148 TOOL_GCC3_COMPILE_CXX_DEPORD = 149 ifdef USE_KOBJCACHE149 ifdef KBUILD_USE_KOBJCACHE 150 150 TOOL_GCC3_COMPILE_CXX_USES_KOBJCACHE = 1 151 151 TOOL_GCC3_COMPILE_CXX_OUTPUT = $(outbase).ii … … 163 163 - 164 164 endef 165 else # ! USE_KOBJCACHE165 else # !KBUILD_USE_KOBJCACHE 166 166 TOOL_GCC3_COMPILE_CXX_OUTPUT = 167 167 define TOOL_GCC3_COMPILE_CXX_CMDS … … 172 172 $(abspath $(source)) 173 173 endef 174 endif # ! USE_KOBJCACHE174 endif # !KBUILD_USE_KOBJCACHE 175 175 176 176 -
trunk/kBuild/tools/GCC32.kmk
r1349 r1418 103 103 TOOL_GCC32_COMPILE_C_DEPEND = 104 104 TOOL_GCC32_COMPILE_C_DEPORD = 105 ifdef USE_KOBJCACHE105 ifdef KBUILD_USE_KOBJCACHE 106 106 TOOL_GCC32_COMPILE_C_USES_KOBJCACHE = 1 107 107 TOOL_GCC32_COMPILE_C_OUTPUT = $(outbase).i … … 119 119 - 120 120 endef 121 else # ! USE_KOBJCACHE121 else # !KBUILD_USE_KOBJCACHE 122 122 TOOL_GCC32_COMPILE_C_OUTPUT = 123 123 define TOOL_GCC32_COMPILE_C_CMDS … … 128 128 $(abspath $(source)) 129 129 endef 130 endif # ! USE_KOBJCACHE130 endif # !KBUILD_USE_KOBJCACHE 131 131 132 132 … … 145 145 TOOL_GCC32_COMPILE_CXX_DEPEND = 146 146 TOOL_GCC32_COMPILE_CXX_DEPORD = 147 ifdef USE_KOBJCACHE147 ifdef KBUILD_USE_KOBJCACHE 148 148 TOOL_GCC32_COMPILE_CXX_USES_KOBJCACHE = 1 149 149 TOOL_GCC32_COMPILE_CXX_OUTPUT = $(outbase).ii … … 161 161 - 162 162 endef 163 else # ! USE_KOBJCACHE163 else # !KBUILD_USE_KOBJCACHE 164 164 165 165 TOOL_GCC32_COMPILE_CXX_OUTPUT = … … 171 171 $(abspath $(source)) 172 172 endef 173 endif # ! USE_KOBJCACHE173 endif # !KBUILD_USE_KOBJCACHE 174 174 175 175 -
trunk/kBuild/tools/GCC3OMF.kmk
r1259 r1418 95 95 TOOL_GCC3OMF_COMPILE_C_DEPEND = 96 96 TOOL_GCC3OMF_COMPILE_C_DEPORD = 97 ifdef USE_KOBJCACHE97 ifdef KBUILD_USE_KOBJCACHE 98 98 TOOL_GCC3OMF_COMPILE_C_USES_KOBJCACHE = 1 99 99 TOOL_GCC3OMF_COMPILE_C_OUTPUT = $(outbase).i … … 111 111 - 112 112 endef 113 else # ! USE_KOBJCACHE113 else # !KBUILD_USE_KOBJCACHE 114 114 TOOL_GCC3OMF_COMPILE_C_OUTPUT = 115 115 define TOOL_GCC3OMF_COMPILE_C_CMDS … … 120 120 $(abspath $(source)) 121 121 endef 122 endif # ! USE_KOBJCACHE122 endif # !KBUILD_USE_KOBJCACHE 123 123 124 124 … … 138 138 TOOL_GCC3OMF_COMPILE_CXX_DEPEND = 139 139 TOOL_GCC3OMF_COMPILE_CXX_DEPORD = 140 ifdef USE_KOBJCACHE140 ifdef KBUILD_USE_KOBJCACHE 141 141 TOOL_GCC3OMF_COMPILE_CXX_USES_KOBJCACHE = 1 142 142 TOOL_GCC3OMF_COMPILE_CXX_OUTPUT = $(outbase).ii … … 154 154 - 155 155 endef 156 else # ! USE_KOBJCACHE156 else # !KBUILD_USE_KOBJCACHE 157 157 TOOL_GCC3OMF_COMPILE_CXX_OUTPUT = 158 158 define TOOL_GCC3OMF_COMPILE_CXX_CMDS … … 163 163 $(abspath $(source)) 164 164 endef 165 endif # ! USE_KOBJCACHE165 endif # !KBUILD_USE_KOBJCACHE 166 166 167 167 -
trunk/kBuild/tools/GCC3PLAIN.kmk
r1259 r1418 101 101 TOOL_GCC3PLAIN_COMPILE_C_DEPEND = 102 102 TOOL_GCC3PLAIN_COMPILE_C_DEPORD = 103 ifdef USE_KOBJCACHE103 ifdef KBUILD_USE_KOBJCACHE 104 104 TOOL_GCC3PLAIN_COMPILE_C_USES_KOBJCACHE = 1 105 105 TOOL_GCC3PLAIN_COMPILE_C_OUTPUT = $(outbase).i … … 117 117 - 118 118 endef 119 else # ! USE_KOBJCACHE119 else # !KBUILD_USE_KOBJCACHE 120 120 TOOL_GCC3PLAIN_COMPILE_C_OUTPUT = 121 121 define TOOL_GCC3PLAIN_COMPILE_C_CMDS … … 126 126 $(abspath $(source)) 127 127 endef 128 endif # ! USE_KOBJCACHE128 endif # !KBUILD_USE_KOBJCACHE 129 129 130 130 … … 143 143 TOOL_GCC3PLAIN_COMPILE_CXX_DEPEND = 144 144 TOOL_GCC3PLAIN_COMPILE_CXX_DEPORD = 145 ifdef USE_KOBJCACHE145 ifdef KBUILD_USE_KOBJCACHE 146 146 TOOL_GCC3PLAIN_COMPILE_CXX_USES_KOBJCACHE = 1 147 147 TOOL_GCC3PLAIN_COMPILE_CXX_OUTPUT = $(outbase).ii … … 159 159 - 160 160 endef 161 else # ! USE_KOBJCACHE161 else # !KBUILD_USE_KOBJCACHE 162 162 TOOL_GCC3PLAIN_COMPILE_CXX_OUTPUT = 163 163 define TOOL_GCC3PLAIN_COMPILE_CXX_CMDS … … 168 168 $(abspath $(source)) 169 169 endef 170 endif # ! USE_KOBJCACHE170 endif # !KBUILD_USE_KOBJCACHE 171 171 172 172 -
trunk/kBuild/tools/GCC4MACHO.kmk
r1259 r1418 104 104 TOOL_GCC4MACHO_COMPILE_C_DEPEND = 105 105 TOOL_GCC4MACHO_COMPILE_C_DEPORD = 106 ifdef USE_KOBJCACHE106 ifdef KBUILD_USE_KOBJCACHE 107 107 TOOL_GCC4MACHO_COMPILE_C_USES_KOBJCACHE = 1 108 108 TOOL_GCC4MACHO_COMPILE_C_OUTPUT = $(outbase).i … … 120 120 - 121 121 endef 122 else # ! USE_KOBJCACHE122 else # !KBUILD_USE_KOBJCACHE 123 123 TOOL_GCC4MACHO_COMPILE_C_OUTPUT = 124 124 define TOOL_GCC4MACHO_COMPILE_C_CMDS … … 146 146 TOOL_GCC4MACHO_COMPILE_CXX_DEPEND = 147 147 TOOL_GCC4MACHO_COMPILE_CXX_DEPORD = 148 ifdef USE_KOBJCACHE148 ifdef KBUILD_USE_KOBJCACHE 149 149 TOOL_GCC4MACHO_COMPILE_CXX_USES_KOBJCACHE = 1 150 150 TOOL_GCC4MACHO_COMPILE_CXX_OUTPUT = $(outbase).ii … … 162 162 - 163 163 endef 164 else # ! USE_KOBJCACHE164 else # !KBUILD_USE_KOBJCACHE 165 165 TOOL_GCC4MACHO_COMPILE_CXX_OUTPUT = 166 166 define TOOL_GCC4MACHO_COMPILE_CXX_CMDS … … 171 171 $(abspath $(source)) 172 172 endef 173 endif # ! USE_KOBJCACHE173 endif # !KBUILD_USE_KOBJCACHE 174 174 175 175 … … 188 188 TOOL_GCC4MACHO_COMPILE_OBJC_DEPEND = 189 189 TOOL_GCC4MACHO_COMPILE_OBJC_DEPORD = 190 ifdef USE_KOBJCACHE190 ifdef KBUILD_USE_KOBJCACHE 191 191 TOOL_GCC4MACHO_COMPILE_OBJC_USES_KOBJCACHE = 1 192 192 TOOL_GCC4MACHO_COMPILE_OBJC_OUTPUT = $(outbase).mi … … 204 204 - 205 205 endef 206 else # ! USE_KOBJCACHE206 else # !KBUILD_USE_KOBJCACHE 207 207 TOOL_GCC4MACHO_COMPILE_OBJC_OUTPUT = 208 208 define TOOL_GCC4MACHO_COMPILE_OBJC_CMDS … … 213 213 $(abspath $(source)) 214 214 endef 215 endif # ! USE_KOBJCACHE215 endif # !KBUILD_USE_KOBJCACHE 216 216 217 217 -
trunk/kBuild/tools/GCC64.kmk
r1349 r1418 103 103 TOOL_GCC64_COMPILE_C_DEPEND = 104 104 TOOL_GCC64_COMPILE_C_DEPORD = 105 ifdef USE_KOBJCACHE105 ifdef KBUILD_USE_KOBJCACHE 106 106 TOOL_GCC64_COMPILE_C_USES_KOBJCACHE = 1 107 107 TOOL_GCC64_COMPILE_C_OUTPUT = $(outbase).i … … 119 119 - 120 120 endef 121 else # ! USE_KOBJCACHE121 else # !KBUILD_USE_KOBJCACHE 122 122 TOOL_GCC64_COMPILE_C_OUTPUT = 123 123 define TOOL_GCC64_COMPILE_C_CMDS … … 128 128 $(abspath $(source)) 129 129 endef 130 endif # ! USE_KOBJCACHE130 endif # !KBUILD_USE_KOBJCACHE 131 131 132 132 … … 145 145 TOOL_GCC64_COMPILE_CXX_DEPEND = 146 146 TOOL_GCC64_COMPILE_CXX_DEPORD = 147 ifdef USE_KOBJCACHE147 ifdef KBUILD_USE_KOBJCACHE 148 148 TOOL_GCC64_COMPILE_CXX_USES_KOBJCACHE = 1 149 149 TOOL_GCC64_COMPILE_CXX_OUTPUT = $(outbase).ii … … 161 161 - 162 162 endef 163 else # ! USE_KOBJCACHE163 else # !KBUILD_USE_KOBJCACHE 164 164 165 165 TOOL_GCC64_COMPILE_CXX_OUTPUT = … … 171 171 $(abspath $(source)) 172 172 endef 173 endif # ! USE_KOBJCACHE173 endif # !KBUILD_USE_KOBJCACHE 174 174 175 175 -
trunk/kBuild/tools/GXX3.kmk
r1349 r1418 105 105 TOOL_GXX3_COMPILE_C_DEPEND = 106 106 TOOL_GXX3_COMPILE_C_DEPORD = 107 ifdef USE_KOBJCACHE107 ifdef KBUILD_USE_KOBJCACHE 108 108 TOOL_GXX3_COMPILE_C_USES_KOBJCACHE = 1 109 109 TOOL_GXX3_COMPILE_C_OUTPUT = $(outbase).i … … 121 121 - 122 122 endef 123 else # ! USE_KOBJCACHE123 else # !KBUILD_USE_KOBJCACHE 124 124 TOOL_GXX3_COMPILE_C_OUTPUT = 125 125 define TOOL_GXX3_COMPILE_C_CMDS … … 130 130 $(abspath $(source)) 131 131 endef 132 endif # ! USE_KOBJCACHE132 endif # !KBUILD_USE_KOBJCACHE 133 133 134 134 … … 147 147 TOOL_GXX3_COMPILE_CXX_DEPEND = 148 148 TOOL_GXX3_COMPILE_CXX_DEPORD = 149 ifdef USE_KOBJCACHE149 ifdef KBUILD_USE_KOBJCACHE 150 150 TOOL_GXX3_COMPILE_CXX_USES_KOBJCACHE = 1 151 151 TOOL_GXX3_COMPILE_CXX_OUTPUT = $(outbase).ii … … 163 163 - 164 164 endef 165 else # ! USE_KOBJCACHE165 else # !KBUILD_USE_KOBJCACHE 166 166 TOOL_GXX3_COMPILE_CXX_OUTPUT = 167 167 define TOOL_GXX3_COMPILE_CXX_CMDS … … 172 172 $(abspath $(source)) 173 173 endef 174 endif # ! USE_KOBJCACHE174 endif # !KBUILD_USE_KOBJCACHE 175 175 176 176 -
trunk/kBuild/tools/GXX32.kmk
r1355 r1418 103 103 TOOL_GXX32_COMPILE_C_DEPEND = 104 104 TOOL_GXX32_COMPILE_C_DEPORD = 105 ifdef USE_KOBJCACHE105 ifdef KBUILD_USE_KOBJCACHE 106 106 TOOL_GXX32_COMPILE_C_USES_KOBJCACHE = 1 107 107 TOOL_GXX32_COMPILE_C_OUTPUT = $(outbase).i … … 119 119 - 120 120 endef 121 else # ! USE_KOBJCACHE121 else # !KBUILD_USE_KOBJCACHE 122 122 TOOL_GXX32_COMPILE_C_OUTPUT = 123 123 define TOOL_GXX32_COMPILE_C_CMDS … … 128 128 $(abspath $(source)) 129 129 endef 130 endif # ! USE_KOBJCACHE130 endif # !KBUILD_USE_KOBJCACHE 131 131 132 132 … … 145 145 TOOL_GXX32_COMPILE_CXX_DEPEND = 146 146 TOOL_GXX32_COMPILE_CXX_DEPORD = 147 ifdef USE_KOBJCACHE147 ifdef KBUILD_USE_KOBJCACHE 148 148 TOOL_GXX32_COMPILE_CXX_USES_KOBJCACHE = 1 149 149 TOOL_GXX32_COMPILE_CXX_OUTPUT = $(outbase).ii … … 161 161 - 162 162 endef 163 else # ! USE_KOBJCACHE163 else # !KBUILD_USE_KOBJCACHE 164 164 TOOL_GXX32_COMPILE_CXX_OUTPUT = 165 165 define TOOL_GXX32_COMPILE_CXX_CMDS … … 170 170 $(abspath $(source)) 171 171 endef 172 endif # ! USE_KOBJCACHE172 endif # !KBUILD_USE_KOBJCACHE 173 173 174 174 -
trunk/kBuild/tools/GXX3OMF.kmk
r1259 r1418 95 95 TOOL_GXX3OMF_COMPILE_C_DEPEND = 96 96 TOOL_GXX3OMF_COMPILE_C_DEPORD = 97 ifdef USE_KOBJCACHE97 ifdef KBUILD_USE_KOBJCACHE 98 98 TOOL_GXX3OMF_COMPILE_C_USES_KOBJCACHE = 1 99 99 TOOL_GXX3OMF_COMPILE_C_OUTPUT = $(outbase).i … … 111 111 - 112 112 endef 113 else # ! USE_KOBJCACHE113 else # !KBUILD_USE_KOBJCACHE 114 114 TOOL_GXX3OMF_COMPILE_C_OUTPUT = 115 115 define TOOL_GXX3OMF_COMPILE_C_CMDS … … 120 120 $(abspath $(source)) 121 121 endef 122 endif # ! USE_KOBJCACHE122 endif # !KBUILD_USE_KOBJCACHE 123 123 124 124 … … 138 138 TOOL_GXX3OMF_COMPILE_CXX_DEPEND = 139 139 TOOL_GXX3OMF_COMPILE_CXX_DEPORD = 140 ifdef USE_KOBJCACHE140 ifdef KBUILD_USE_KOBJCACHE 141 141 TOOL_GXX3OMF_COMPILE_CXX_USES_KOBJCACHE = 1 142 142 TOOL_GXX3OMF_COMPILE_CXX_OUTPUT = $(outbase).ii … … 154 154 - 155 155 endef 156 else # ! USE_KOBJCACHE156 else # !KBUILD_USE_KOBJCACHE 157 157 TOOL_GXX3OMF_COMPILE_CXX_OUTPUT = 158 158 define TOOL_GXX3OMF_COMPILE_CXX_CMDS … … 163 163 $(abspath $(source)) 164 164 endef 165 endif # ! USE_KOBJCACHE165 endif # !KBUILD_USE_KOBJCACHE 166 166 167 167 -
trunk/kBuild/tools/GXX3PLAIN.kmk
r1259 r1418 101 101 TOOL_GXX3PLAIN_COMPILE_C_DEPEND = 102 102 TOOL_GXX3PLAIN_COMPILE_C_DEPORD = 103 ifdef USE_KOBJCACHE103 ifdef KBUILD_USE_KOBJCACHE 104 104 TOOL_GXX3PLAIN_COMPILE_C_USES_KOBJCACHE = 1 105 105 TOOL_GXX3PLAIN_COMPILE_C_OUTPUT = $(outbase).i … … 117 117 - 118 118 endef 119 else # ! USE_KOBJCACHE119 else # !KBUILD_USE_KOBJCACHE 120 120 TOOL_GXX3PLAIN_COMPILE_C_OUTPUT = 121 121 define TOOL_GXX3PLAIN_COMPILE_C_CMDS … … 126 126 $(abspath $(source)) 127 127 endef 128 endif # ! USE_KOBJCACHE128 endif # !KBUILD_USE_KOBJCACHE 129 129 130 130 … … 143 143 TOOL_GXX3PLAIN_COMPILE_CXX_DEPEND = 144 144 TOOL_GXX3PLAIN_COMPILE_CXX_DEPORD = 145 ifdef USE_KOBJCACHE145 ifdef KBUILD_USE_KOBJCACHE 146 146 TOOL_GXX3PLAIN_COMPILE_CXX_USES_KOBJCACHE = 1 147 147 TOOL_GXX3PLAIN_COMPILE_CXX_OUTPUT = $(outbase).ii … … 159 159 - 160 160 endef 161 else # ! USE_KOBJCACHE161 else # !KBUILD_USE_KOBJCACHE 162 162 TOOL_GXX3PLAIN_COMPILE_CXX_OUTPUT = 163 163 define TOOL_GXX3PLAIN_COMPILE_CXX_CMDS … … 168 168 $(abspath $(source)) 169 169 endef 170 endif # ! USE_KOBJCACHE170 endif # !KBUILD_USE_KOBJCACHE 171 171 172 172 -
trunk/kBuild/tools/GXX4MACHO.kmk
r1259 r1418 104 104 TOOL_GXX4MACHO_COMPILE_C_DEPEND = 105 105 TOOL_GXX4MACHO_COMPILE_C_DEPORD = 106 ifdef USE_KOBJCACHE106 ifdef KBUILD_USE_KOBJCACHE 107 107 TOOL_GXX4MACHO_COMPILE_C_USES_KOBJCACHE = 1 108 108 TOOL_GXX4MACHO_COMPILE_C_OUTPUT = $(outbase).i … … 120 120 - 121 121 endef 122 else # ! USE_KOBJCACHE122 else # !KBUILD_USE_KOBJCACHE 123 123 TOOL_GXX4MACHO_COMPILE_C_OUTPUT = 124 124 define TOOL_GXX4MACHO_COMPILE_C_CMDS … … 146 146 TOOL_GXX4MACHO_COMPILE_CXX_DEPEND = 147 147 TOOL_GXX4MACHO_COMPILE_CXX_DEPORD = 148 ifdef USE_KOBJCACHE148 ifdef KBUILD_USE_KOBJCACHE 149 149 TOOL_GXX4MACHO_COMPILE_CXX_USES_KOBJCACHE = 1 150 150 TOOL_GXX4MACHO_COMPILE_CXX_OUTPUT = $(outbase).ii … … 162 162 - 163 163 endef 164 else # ! USE_KOBJCACHE164 else # !KBUILD_USE_KOBJCACHE 165 165 TOOL_GXX4MACHO_COMPILE_CXX_OUTPUT = 166 166 define TOOL_GXX4MACHO_COMPILE_CXX_CMDS … … 188 188 TOOL_GXX4MACHO_COMPILE_OBJC_DEPEND = 189 189 TOOL_GXX4MACHO_COMPILE_OBJC_DEPORD = 190 ifdef USE_KOBJCACHE190 ifdef KBUILD_USE_KOBJCACHE 191 191 TOOL_GXX4MACHO_COMPILE_OBJC_USES_KOBJCACHE = 1 192 192 TOOL_GXX4MACHO_COMPILE_OBJC_OUTPUT = $(outbase).mi … … 204 204 - 205 205 endef 206 else # ! USE_KOBJCACHE206 else # !KBUILD_USE_KOBJCACHE 207 207 TOOL_GXX4MACHO_COMPILE_OBJC_OUTPUT = 208 208 define TOOL_GXX4MACHO_COMPILE_OBJC_CMDS -
trunk/kBuild/tools/GXX64.kmk
r1355 r1418 103 103 TOOL_GXX64_COMPILE_C_DEPEND = 104 104 TOOL_GXX64_COMPILE_C_DEPORD = 105 ifdef USE_KOBJCACHE105 ifdef KBUILD_USE_KOBJCACHE 106 106 TOOL_GXX64_COMPILE_C_USES_KOBJCACHE = 1 107 107 TOOL_GXX64_COMPILE_C_OUTPUT = $(outbase).i … … 119 119 - 120 120 endef 121 else # ! USE_KOBJCACHE121 else # !KBUILD_USE_KOBJCACHE 122 122 TOOL_GXX64_COMPILE_C_OUTPUT = 123 123 define TOOL_GXX64_COMPILE_C_CMDS … … 128 128 $(abspath $(source)) 129 129 endef 130 endif # ! USE_KOBJCACHE130 endif # !KBUILD_USE_KOBJCACHE 131 131 132 132 … … 145 145 TOOL_GXX64_COMPILE_CXX_DEPEND = 146 146 TOOL_GXX64_COMPILE_CXX_DEPORD = 147 ifdef USE_KOBJCACHE147 ifdef KBUILD_USE_KOBJCACHE 148 148 TOOL_GXX64_COMPILE_CXX_USES_KOBJCACHE = 1 149 149 TOOL_GXX64_COMPILE_CXX_OUTPUT = $(outbase).ii … … 161 161 - 162 162 endef 163 else # ! USE_KOBJCACHE163 else # !KBUILD_USE_KOBJCACHE 164 164 TOOL_GXX64_COMPILE_CXX_OUTPUT = 165 165 define TOOL_GXX64_COMPILE_CXX_CMDS … … 170 170 $(abspath $(source)) 171 171 endef 172 endif # ! USE_KOBJCACHE172 endif # !KBUILD_USE_KOBJCACHE 173 173 174 174 -
trunk/kBuild/tools/VCC70.kmk
r1354 r1418 114 114 TOOL_VCC70_COMPILE_C_DEPEND = 115 115 TOOL_VCC70_COMPILE_C_DEPORD = 116 #ifdef USE_KOBJCACHE116 #ifdef KBUILD_USE_KOBJCACHE 117 117 #TOOL_VCC70_COMPILE_C_OUTPUT = $(call TOOL_VCC70_PDB, $(outbase)-obj,pdb) $(call TOOL_VCC70_PDB, $(outbase)-obj,idb) $(outbase).i 118 118 #TOOL_VCC70_COMPILE_C_USESES_KOBJCACHE = 1 … … 131 131 # $(QUIET)$(DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC70_PDB,$(outbase)-obj,idb) 132 132 #endef 133 #else # ! USE_KOBJCACHE133 #else # !KBUILD_USE_KOBJCACHE 134 134 TOOL_VCC70_COMPILE_C_OUTPUT = $(call TOOL_VCC70_PDB, $(outbase)-obj,idb) 135 135 TOOL_VCC70_COMPILE_C_OUTPUT_MAYBE = $(call TOOL_VCC70_PDB, $(outbase)-obj,pdb) … … 143 143 $(QUIET)$(DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC70_PDB,$(outbase)-obj,idb) 144 144 endef 145 #endif # ! USE_KOBJCACHE145 #endif # !KBUILD_USE_KOBJCACHE 146 146 147 147 … … 162 162 TOOL_VCC70_COMPILE_CXX_DEPEND = 163 163 TOOL_VCC70_COMPILE_CXX_DEPORD = 164 #ifdef USE_KOBJCACHE164 #ifdef KBUILD_USE_KOBJCACHE 165 165 #TOOL_VCC70_COMPILE_CXX_OUTPUT = $(call TOOL_VCC70_PDB, $(outbase)-obj,pdb) $(call TOOL_VCC70_PDB, $(outbase)-obj,idb) $(outbase).ii 166 166 #TOOL_VCC70_COMPILE_CXX_USES_KOBJCACHE = 1 … … 179 179 # $(QUIET)$(DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC70_PDB,$(outbase)-obj,idb) 180 180 #endef 181 #else # ! USE_KOBJCACHE181 #else # !KBUILD_USE_KOBJCACHE 182 182 TOOL_VCC70_COMPILE_CXX_OUTPUT = $(call TOOL_VCC70_PDB, $(outbase)-obj,idb) 183 183 TOOL_VCC70_COMPILE_CXX_OUTPUT_MAYBE = $(call TOOL_VCC70_PDB, $(outbase)-obj,pdb) … … 191 191 $(QUIET)$(DEP_IDB) -f -s -o $(dep) -t $(obj) $(call TOOL_VCC70_PDB,$(outbase)-obj,idb) 192 192 endef 193 #endif # ! USE_KOBJCACHE193 #endif # !KBUILD_USE_KOBJCACHE 194 194 195 195
Note:
See TracChangeset
for help on using the changeset viewer.