projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab1373d
)
Delete .tar, .get-output, and .get-errors files on "clean" target.
author
Ben Pfaff
<blp@cs.stanford.edu>
Fri, 3 Nov 2006 02:50:36 +0000
(
02:50
+0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Fri, 3 Nov 2006 02:50:36 +0000
(
02:50
+0000)
Thanks to Godmar Back for pointing out the problem.
src/tests/filesys/extended/Make.tests
patch
|
blob
|
history
diff --git
a/src/tests/filesys/extended/Make.tests
b/src/tests/filesys/extended/Make.tests
index b8beeecdf7bca99a549b872819dfbd44d5f40fc0..72539a5e8ddfaad2f841486de0108afce8e1e84c 100644
(file)
--- a/
src/tests/filesys/extended/Make.tests
+++ b/
src/tests/filesys/extended/Make.tests
@@
-48,3
+48,10
@@
tests/filesys/extended/%.output: os.dsk
$(TESTCMD)
$(GETCMD)
rm -f tmp.dsk
+
+TARS = $(addsuffix .tar,$(tests/filesys/extended_TESTS))
+GET_OUTPUTS = $(addsuffix .get-output,$(tests/filesys/extended_TESTS))
+GET_ERRORS = $(addsuffix .get-errors,$(tests/filesys/extended_TESTS))
+
+clean::
+ rm -f $(TARS) $(GET_OUTPUTS) $(GET_ERRORS)