Changeset 21449
- Timestamp:
- Sep 19, 2010, 8:59:38 PM (15 years ago)
- Location:
- trunk/testapp
- Files:
-
- 1 added
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/testapp/common.mak ¶
r21433 r21449 23 23 24 24 run-%: % 25 @echo [Running $< ]25 @echo [Running $<$(if $($<_ARGS), $($<_ARGS))] 26 26 @echo. 27 @cmd /c "set BEGINLIBPATH=$(ODIN_DOS)/bin/Debug;$(ODIN_DOS)/bin;%BEGINLIBPATH% && $<" 27 @cmd /c "set BEGINLIBPATH=$(ODIN_DOS)/bin/Debug;$(ODIN_DOS)/bin;%BEGINLIBPATH% && $< $($<_ARGS)" 28 @echo. 28 29 29 30 debug-%: % 30 @echo [ Debugging $<]31 @echo [Running $<$(if $($<_ARGS), $($<_ARGS))] 31 32 @echo. 32 @cmd /c "set BEGINLIBPATH=$(ODIN_DOS)/bin/Debug;$(ODIN_DOS)/bin;%BEGINLIBPATH% && $(DEBUGGER) $<" 33 @cmd /c "set BEGINLIBPATH=$(ODIN_DOS)/bin/Debug;$(ODIN_DOS)/bin;%BEGINLIBPATH% && $(DEBUGGER) $< $($<_ARGS)" 34 @echo. 33 35 34 36 %.exe: %.c … … 42 44 clean:: 43 45 -rm $(CLEAN) 46 47 define run-with-args-gen 48 .PHONY: run-$(1)-$(2) run-$(1)-$(3) 49 run-$(1)-$(2): $(1) 50 @make -s run-$(1) $(1)_ARGS=$($(1)_ARGS.$(2)) 51 run-$(1)-$(3):: run-$(1)-$(2) 52 endef 53 54 run-with-args = $(foreach i, $(2), $(eval $(call run-with-args-gen,$(1),$(i),$(3))))run-$(1)-$(3) -
TabularUnified trunk/testapp/exceptions/seh/Makefile ¶
r21432 r21449 3 3 include $(ODIN)/testapp/common.mak 4 4 5 all: test.exe # test.s5 all: except.exe finally.exe # except.s 6 6 7 run: run-test.exe 7 finally.exe_ARGS.1 = 1 8 finally.exe_ARGS.2 = 2 9 finally.exe_ARGS.3 = 3 10 11 run: run-except.exe $(call run-with-args,finally.exe,1 2 3,all) 8 12 9 13 CLEAN += *.s
Note:
See TracChangeset
for help on using the changeset viewer.