Delete .tar, .get-output, and .get-errors files on "clean" target.
authorBen Pfaff <blp@cs.stanford.edu>
Fri, 3 Nov 2006 02:50:36 +0000 (02:50 +0000)
committerBen 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

index b8beeecdf7bca99a549b872819dfbd44d5f40fc0..72539a5e8ddfaad2f841486de0108afce8e1e84c 100644 (file)
@@ -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)