Makefile: Add removal of *.exe files to clean target

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
This commit is contained in:
Peter Tyser 2009-03-13 18:54:26 -05:00 committed by Wolfgang Denk
parent d0d6144e0e
commit 2b48f7d5f6
1 changed files with 1 additions and 1 deletions

View File

@ -3520,7 +3520,7 @@ clean:
@rm -f $(obj)api_examples/demo $(TIMESTAMP_FILE) $(VERSION_FILE)
@find $(OBJTREE) -type f \
\( -name 'core' -o -name '*.bak' -o -name '*~' \
-o -name '*.o' -o -name '*.a' \) -print \
-o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
| xargs rm -f
clobber: clean