]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Gestion par Makefile.am
authorboulant <boulant>
Wed, 7 Dec 2005 17:38:18 +0000 (17:38 +0000)
committerboulant <boulant>
Wed, 7 Dec 2005 17:38:18 +0000 (17:38 +0000)
runIDLParser est ramené dans le répertoire courant.

bin/Makefile.am [new file with mode: 0644]
bin/runIDLparser.in [new file with mode: 0644]
bin/salome/runIDLparser.in [deleted file]

diff --git a/bin/Makefile.am b/bin/Makefile.am
new file mode 100644 (file)
index 0000000..35ff329
--- /dev/null
@@ -0,0 +1,38 @@
+# -* Makefile *- 
+#
+# Author : Guillaume Boulant (CSSI)
+# Module : KERNEL
+# $Header$
+#
+
+
+include $(top_srcdir)/salome_adm/unix/make_common_starter.am
+
+#
+# ===============================================================
+# Files to be installed
+# ===============================================================
+#
+
+# These files are data, module or lib files
+salomescript_DATA= \
+VERSION \
+orbmodule.py \
+salome.launch \
+envSalome.py \
+salomeConsole.py
+
+# These files are executable scripts
+salomescript_SCRIPTS=\
+       runIDLparser \
+       runSalome.py \
+       killSalome.py \
+       killSalomeWithPort.py \
+       runSalome \
+       runSalome.csh \
+       runNS.sh \
+       createAppli.sh \
+       launchConfigureParser.py \
+       showNS.py \
+       addToKillList.py
+
diff --git a/bin/runIDLparser.in b/bin/runIDLparser.in
new file mode 100644 (file)
index 0000000..3957369
--- /dev/null
@@ -0,0 +1,37 @@
+#! /bin/bash
+
+# print the help message ====================================
+
+# test $@="-h" -o -z $@
+
+hh=0
+
+if test "$#" = "0";then
+    hh=1
+else
+    for a in $@; do
+       if test "$a" = "-h"; then
+           hh=1
+       fi
+    done
+fi
+
+if test "$hh" = "1" ; then
+    echo ""
+    echo "Usage : "
+    echo ""
+    echo "   to run IDLparser:"
+    echo ""
+    echo "        $0 -Wbcatalog=<my_catalog.xml>[,icon=<pngfile>][,version=<num>][,author=<name>][,name=<component_name>][,multistudy=<component_multistudy>][,remove=component_name] <file.idl>   "
+    echo ""
+    echo "   to have omniidl help:"
+    echo ""
+    echo "        $0 -u "
+    echo ""
+    exit 1
+fi
+#============================================================
+
+# omiidl ====================================================
+omniidl -bIDLparser -I ${KERNEL_ROOT_DIR}/idl/salome $@
+#============================================================
diff --git a/bin/salome/runIDLparser.in b/bin/salome/runIDLparser.in
deleted file mode 100644 (file)
index 3957369..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#! /bin/bash
-
-# print the help message ====================================
-
-# test $@="-h" -o -z $@
-
-hh=0
-
-if test "$#" = "0";then
-    hh=1
-else
-    for a in $@; do
-       if test "$a" = "-h"; then
-           hh=1
-       fi
-    done
-fi
-
-if test "$hh" = "1" ; then
-    echo ""
-    echo "Usage : "
-    echo ""
-    echo "   to run IDLparser:"
-    echo ""
-    echo "        $0 -Wbcatalog=<my_catalog.xml>[,icon=<pngfile>][,version=<num>][,author=<name>][,name=<component_name>][,multistudy=<component_multistudy>][,remove=component_name] <file.idl>   "
-    echo ""
-    echo "   to have omniidl help:"
-    echo ""
-    echo "        $0 -u "
-    echo ""
-    exit 1
-fi
-#============================================================
-
-# omiidl ====================================================
-omniidl -bIDLparser -I ${KERNEL_ROOT_DIR}/idl/salome $@
-#============================================================