]> SALOME platform Git repositories - modules/med.git/commitdiff
Salome HOME
DCQ : Merge with Ecole Ete a6.
authornri <nri@opencascade.com>
Fri, 25 Jun 2004 12:27:35 +0000 (12:27 +0000)
committernri <nri@opencascade.com>
Fri, 25 Jun 2004 12:27:35 +0000 (12:27 +0000)
INSTALL
Makefile.in
configure.in.base

diff --git a/INSTALL b/INSTALL
index 8da1ddfaef6051a0501220eb58cf52db587f7ab9..8db724e704b13b151c2a7961ecbf1369858cfd9f 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -1,3 +1,3 @@
-This is the version 1.4.0 of MED
+This is the version 2.0.0 of MED
 Compatible with :
-       - KERNEL 1.4.0
+       - KERNEL 2.0.0
index 4cd2fe12554aaf6e0d0083d3ac3b7341092cd989..269e8a520604c38d3cf7d826297b24a1976352ce 100644 (file)
@@ -14,11 +14,12 @@ VPATH=.:@srcdir@:@top_srcdir@/bin:@top_srcdir@/resources:./bin:@top_srcdir@/idl:
 
 @COMMENCE@
 
-SUBDIRS = idl src
+SUBDIRS = idl src doc
 
 RESOURCES_FILES = \
 MEDCatalog.xml \
 MED_en.xml \
+MED.config \
 Data.png \
 Infos.png \
 Structure.png \
@@ -97,10 +98,10 @@ include/salome/SALOMEconfig.h: salome_adm/unix/SALOMEconfig.ref
 # test if SALOMEconfig.h has changed (contents)
 salome_adm/unix/SALOMEconfig.ref: salome_adm/unix/SALOMEconfig.h
        @if ! [ -a $@ ]; then \
-         cp -p $< $@;        \
+         cp -p -f $< $@;        \
        fi;                   \
        if ! cmp $< $@; then  \
-         cp -p $< $@;        \
+         cp -p -f $< $@;        \
        fi;                   \
 
 include/salome/sstream: salome_adm/unix/sstream
@@ -124,7 +125,7 @@ install-include: $(include_list)
        $(INSTALL) -d  $(includedir)
        @for f in X $(include_list); do                         \
           if test $$f != X; then                               \
-            ($(INSTALL_DATA) $$f $(includedir)/. || exit 1);   \
+            ($(INSTALL_DATA) -p $$f $(includedir)/. || exit 1);        \
           fi;                                                  \
        done
 
index 064d002baa606c4909e7f3f9c41fffaad5ee461b..73e9b8cc7b1f48919f770b1647ffca9453b4cf57 100644 (file)
@@ -294,7 +294,7 @@ else
 fi
 
 # make other build directories
-for rep in salome_adm adm_local doc bin/salome include/salome lib/salome share/salome/resources share/salome/doc idl
+for rep in salome_adm adm_local doc bin/salome include/salome lib/salome share/salome/resources idl
 do
 #   if test ! -d $rep ; then
 #      eval mkdir $rep
@@ -327,14 +327,16 @@ dnl copy shells and utilities contained in the bin directory
 dnl excluding .in files (treated in AC-OUTPUT below) and CVS 
 dnl directory
 
-cd bin
+mkdir -p bin/salome
+cd bin/salome
+
 for i in $ROOT_SRCDIR/bin/*
 do
   local_bin=`echo $i | sed -e "s,$ROOT_SRCDIR,.,"`
   case "$local_bin" in
         *.in | *~)                    ;;
-        ./bin/CVS)                    ;;
-        *) ln -fs $i; echo $local_bin ;;
+        ./bin/CVS | ./bin/salome)                    ;;
+        *) /usr/bin/install -C $i .; echo $local_bin ;;
   esac
 done
 cd $ROOT_BUILDDIR