Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-05-12 09:11:14 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-05-12 09:11:14 +0400
commit926e37a2d63c27a341d9f3fec76c4f86cc89aad2 (patch)
tree63b77dcab9ab171c7cd096328dd14f92af47f3e3 /runtime
parentb461488ea121ab89a000a84bcccb67b8dba24dda (diff)
Added cleanassemblies target to remove all dlls and exes
svn path=/trunk/mono/; revision=27140
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 201d51d138a..05a9d983d76 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -100,3 +100,7 @@ copy_dlls:
push_dlls:
scp -o "Protocol 1" *.dll *.exe snapshot@mono-cvs.ximian.com:dlls
+
+cleanassemblies:
+ find -name \*.dll -exec rm -vf {} \;
+ find -name \*.exe -exec rm -vf {} \;