From: boulant Date: Wed, 7 Dec 2005 17:38:18 +0000 (+0000) Subject: Gestion par Makefile.am X-Git-Tag: BR_auto_V310a2__v_0_3~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f274caa18712614f7d6178571a4c2b075f630648;p=modules%2Fkernel.git Gestion par Makefile.am runIDLParser est ramené dans le répertoire courant. --- diff --git a/bin/Makefile.am b/bin/Makefile.am new file mode 100644 index 000000000..35ff329b0 --- /dev/null +++ b/bin/Makefile.am @@ -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 index 000000000..3957369af --- /dev/null +++ b/bin/runIDLparser.in @@ -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=[,icon=][,version=][,author=][,name=][,multistudy=][,remove=component_name] " + 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 index 3957369af..000000000 --- a/bin/salome/runIDLparser.in +++ /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=[,icon=][,version=][,author=][,name=][,multistudy=][,remove=component_name] " - echo "" - echo " to have omniidl help:" - echo "" - echo " $0 -u " - echo "" - exit 1 -fi -#============================================================ - -# omiidl ==================================================== -omniidl -bIDLparser -I ${KERNEL_ROOT_DIR}/idl/salome $@ -#============================================================