Added code to the clean rule that deletes files placed in the source directory.

These files interfer with a second build attempt.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6927 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2003-06-27 17:03:20 +00:00
parent 2a6530f91a
commit 3a56364f00
2 changed files with 2 additions and 0 deletions

View File

@ -25,3 +25,4 @@ test:: $(TOOLEXENAME_G) sample.gr
$(TOOLEXENAME_G) -I sample.gr -o tmp && cmp tmp sample.c
$(TOOLEXENAME_G) -I -O0 <sample.gr >tmp && cmp tmp sample.c
$(TOOLEXENAME_G) -I -= <sample.gr >tmp && cmp tmp sample.c
rm -f tmp sample.c

View File

@ -25,3 +25,4 @@ test:: $(TOOLEXENAME_G) sample.gr
$(TOOLEXENAME_G) -I sample.gr -o tmp && cmp tmp sample.c
$(TOOLEXENAME_G) -I -O0 <sample.gr >tmp && cmp tmp sample.c
$(TOOLEXENAME_G) -I -= <sample.gr >tmp && cmp tmp sample.c
rm -f tmp sample.c