Changeset 5898 in vbox for trunk/src/VBox/VMM/testcase
- Timestamp:
- Dec 2, 2007 6:08:26 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26428
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/Makefile.kmk
r5458 r5898 229 229 ifndef DONT_USE_YASM 230 230 $(QUIET)$(TOOL_YASM_AS) $(MY_ASA_ASM_STUFF) -o [email protected] -l [email protected] $< 231 ifdef KMK_NEW_SED 232 $(SED) -f $(VBOX_PATH_VMM_SRC)/testcase/tstAsmStructsAsm-lst.sed --output $@ [email protected] 233 else 231 234 $(SED) -f $(VBOX_PATH_VMM_SRC)/testcase/tstAsmStructsAsm-lst.sed [email protected] > $@ 235 endif 232 236 else 233 237 $(QUIET)$(TOOL_NASM_AS) -g $(MY_ASA_ASM_STUFF) -o [email protected] -l [email protected] $< … … 255 259 $(call MSG_GENERATE,tstVMStructSize,$@,$<) 256 260 $(QUIET)$(RM) -f $@ [email protected] [email protected] 261 ifdef KMK_USE_REDIRECT 262 $(QUIET)$(REDIRECT) -wo [email protected] -- $(VBOX_NM) $< 263 else 257 264 $(VBOX_NM) $< > [email protected] 265 endif 266 ifdef KMK_NEW_SED 267 $(QUIET)$(SED) -e '/STAMPROFILEADV/d' \ 268 -e '/00[0-9a-fA-F]* [aA] [^_.]*\./!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^.]*\)\.\(.*$$\)/ CHECK_OFF(\2, 0x0\1, \3);/' \ 269 --output [email protected] [email protected] 270 $(QUIET)$(SED) -e '/VM_size$$/d' \ 271 -e '/00[0-9a-fA-F]* [aA] [^_.]*_size$$/!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^_.]*\)_size/ CHECK_SIZE(\2, 0x0\1);/' \ 272 --append [email protected] [email protected] 273 else 258 274 $(QUIET)$(SED) -e '/STAMPROFILEADV/d' \ 259 275 -e '/00[0-9a-fA-F]* [aA] [^_.]*\./!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^.]*\)\.\(.*$$\)/ CHECK_OFF(\2, 0x0\1, \3);/' \ … … 262 278 -e '/00[0-9a-fA-F]* [aA] [^_.]*_size$$/!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^_.]*\)_size/ CHECK_SIZE(\2, 0x0\1);/' \ 263 279 [email protected] >> [email protected] 280 endif 264 281 $(QUIET)$(MV) -f [email protected] $@ 265 282 $(QUIET)$(RM) -f [email protected] … … 268 285 $(PATH_TARGET)/tstAsmStructsGC.h: $(PATH_TARGET)/tstAsmStructsHC.h 269 286 $(call MSG_GENERATE,tstVMStructSize,$@,$<) 287 ifdef KMK_NEW_SED 288 $(QUIET)$(SED) -e '/VMMSWITCHERDEF/d' --output $@ $^ 289 else 270 290 $(QUIET)$(SED) -e '/VMMSWITCHERDEF/d' \ 271 291 $^ > $@ 292 endif 272 293 273 294 ## @todo make this default kBuild behaviour. … … 290 311 $(PATH_TARGET)/tstVMStructGC.h: $$(INSTARGET_tstVMStructGC) 291 312 $(call MSG_GENERATE,tstVMStructSize,$@) 313 ifdef KMK_USE_REDIRECT 314 $(QUIET)$(REDIRECT) -wo $@ -- $(INSTARGET_tstVMStructGC) 315 else 292 316 $(QUIET)$(INSTARGET_tstVMStructGC) > $@ 317 endif 293 318 294 319 # 2. run it.
Note:
See TracChangeset
for help on using the changeset viewer.