summaryrefslogtreecommitdiff
path: root/macros
diff options
context:
space:
mode:
Diffstat (limited to 'macros')
-rw-r--r--macros/cleanmacros.sce20
1 files changed, 0 insertions, 20 deletions
diff --git a/macros/cleanmacros.sce b/macros/cleanmacros.sce
deleted file mode 100644
index a6428b2..0000000
--- a/macros/cleanmacros.sce
+++ /dev/null
@@ -1,20 +0,0 @@
-// ====================================================================
-// This file is released under the 3-clause BSD license. See COPYING-BSD.
-// ====================================================================
-function cleanmacros()
-
- libpath = get_absolute_file_path("cleanmacros.sce");
-
- binfiles = ls(libpath+"/*.bin");
- for i = 1:size(binfiles,"*")
- mdelete(binfiles(i));
- end
-
- mdelete(libpath+"/names");
- mdelete(libpath+"/lib");
-endfunction
-
-cleanmacros();
-clear cleanmacros; // remove cleanmacros on stack
-
-// ====================================================================