Changeset 5976 in vbox for trunk/src/VBox/VMM/testcase
- Timestamp:
- Dec 6, 2007 4:25:40 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26554
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/Makefile.kmk
r5904 r5976 236 236 ifndef DONT_USE_YASM 237 237 $(QUIET)$(TOOL_YASM_AS) $(MY_ASA_ASM_STUFF) -o [email protected] -l [email protected] $< 238 ifdef KMK_NEW_SED239 238 $(SED) -f $(VBOX_PATH_VMM_SRC)/testcase/tstAsmStructsAsm-lst.sed --output $@ [email protected] 240 else241 $(SED) -f $(VBOX_PATH_VMM_SRC)/testcase/tstAsmStructsAsm-lst.sed [email protected] > $@242 endif243 239 else 244 240 $(QUIET)$(TOOL_NASM_AS) -g $(MY_ASA_ASM_STUFF) -o [email protected] -l [email protected] $< … … 266 262 $(call MSG_GENERATE,tstVMStructSize,$@,$<) 267 263 $(QUIET)$(RM) -f $@ [email protected] [email protected] 268 ifdef KMK_USE_REDIRECT269 264 $(QUIET)$(REDIRECT) -wo [email protected] -- $(VBOX_NM) $< 270 else271 $(VBOX_NM) $< > [email protected]272 endif273 ifdef KMK_NEW_SED274 265 $(QUIET)$(SED) -e '/STAMPROFILEADV/d' \ 275 266 -e '/00[0-9a-fA-F]* [aA] [^_.]*\./!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^.]*\)\.\(.*$$\)/ CHECK_OFF(\2, 0x0\1, \3);/' \ 276 --output [email protected] [email protected] 267 --output [email protected] [email protected] 277 268 $(QUIET)$(SED) -e '/VM_size$$/d' \ 278 269 -e '/00[0-9a-fA-F]* [aA] [^_.]*_size$$/!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^_.]*\)_size/ CHECK_SIZE(\2, 0x0\1);/' \ 279 270 --append [email protected] [email protected] 280 else281 $(QUIET)$(SED) -e '/STAMPROFILEADV/d' \282 -e '/00[0-9a-fA-F]* [aA] [^_.]*\./!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^.]*\)\.\(.*$$\)/ CHECK_OFF(\2, 0x0\1, \3);/' \283 [email protected] > [email protected]284 $(QUIET)$(SED) -e '/VM_size$$/d' \285 -e '/00[0-9a-fA-F]* [aA] [^_.]*_size$$/!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^_.]*\)_size/ CHECK_SIZE(\2, 0x0\1);/' \286 [email protected] >> [email protected]287 endif288 271 $(QUIET)$(MV) -f [email protected] $@ 289 272 $(QUIET)$(RM) -f [email protected] … … 292 275 $(PATH_TARGET)/tstAsmStructsGC.h: $(PATH_TARGET)/tstAsmStructsHC.h 293 276 $(call MSG_GENERATE,tstVMStructSize,$@,$<) 294 ifdef KMK_NEW_SED295 277 $(QUIET)$(SED) -e '/VMMSWITCHERDEF/d' --output $@ $^ 296 else297 $(QUIET)$(SED) -e '/VMMSWITCHERDEF/d' \298 $^ > $@299 endif300 278 301 279 ## @todo make this default kBuild behaviour. … … 318 296 $(PATH_TARGET)/tstVMStructGC.h: $$(INSTARGET_tstVMStructGC) 319 297 $(call MSG_GENERATE,tstVMStructSize,$@) 320 ifdef KMK_USE_REDIRECT321 298 $(QUIET)$(REDIRECT) -wo $@ -- $(INSTARGET_tstVMStructGC) 322 else323 $(QUIET)$(INSTARGET_tstVMStructGC) > $@324 endif325 299 326 300 # 2. run it.
Note:
See TracChangeset
for help on using the changeset viewer.