summaryrefslogtreecommitdiff
path: root/macros/cleanmacros.sce
diff options
context:
space:
mode:
authorHarpreet2016-02-05 10:57:46 +0530
committerHarpreet2016-02-05 10:57:46 +0530
commit7996c2704975d61e03cfb4204cfb8e202367a448 (patch)
treeec7bc84483e529e58daa2aa54bfb22316c7a4749 /macros/cleanmacros.sce
parent29845c2fff5d9aa7fd6655ccba6a5c98a5b9fc0e (diff)
downloadFOSSEE-Optimization-toolbox-7996c2704975d61e03cfb4204cfb8e202367a448.tar.gz
FOSSEE-Optimization-toolbox-7996c2704975d61e03cfb4204cfb8e202367a448.tar.bz2
FOSSEE-Optimization-toolbox-7996c2704975d61e03cfb4204cfb8e202367a448.zip
cleaner.sce deleted
Diffstat (limited to 'macros/cleanmacros.sce')
-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
-
-// ====================================================================