Added new scripts for building app, plugins and packages
[mdictionary] / make-plugins
diff --git a/make-plugins b/make-plugins
deleted file mode 100755 (executable)
index 40377d1..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-path="trunk/src/plugins/"
-pushd $path
-
-for pro in  *; do
-    if [ -d "$pro" ] ; then  
-            pushd $pro/src/
-           qmake *.pro
-           make clean
-           make
-            mv `find . -name "*.so.*" -type f` "../../../base/$pro.so"
-            popd
-    fi
-done
-popd
-