diff --git a/back_up_tracy-3.5.sh b/back_up_tracy-3.5.sh
deleted file mode 100755
index 1ff4af0f59519d1f14259754d5ca167f71c9d396..0000000000000000000000000000000000000000
--- a/back_up_tracy-3.5.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-time=`date --iso-8601`
-
-dir=`pwd`
-
-tracy="tracy-3.5"
-
-# set home directory
-cd "$dir/$tracy"
-
-# clean up directory
-make distclean
-
-rm -rf autom4te.cache
-rm -rf aclocal.m4
-rm -rf bin/*
-rm -rf tracy/bin/*
-
-cd $dir
-
-fname="back_up_$tracy.$time.tgz"
-cmd_str="tar -czf $fname "back_up_$tracy.sh" "make_$tracy.sh" $tracy"
-echo "$cmd_str"
-`$cmd_str`
diff --git a/make_for_gcc.sh b/make_for_gcc.sh
deleted file mode 100755
index a09b231356d371a7a5447f393dd93329818bce59..0000000000000000000000000000000000000000
--- a/make_for_gcc.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/bash
-
-#===================================================
-# script to compile non-parallel version tracy
-#===================================================
-
-
-# not sh since on Ubuntu sh is not bash
-set -x # for debugging
-
-if [ $# -ne 1 ] 
-then                    # affiche l'usage
-  echo "Missing parameter" 
-  echo "Use: $0 debug for debug" 
-  echo "Use: $0 opt for optimization result" 
-  exit 1
-fi
-
-
-
-dir=`pwd`
-#NUM_REC="$dir/num_rec"
-
-#INSTALL="/usr/bin/install"
-
-TRACY="tracy"
-
-cd "$dir/$TRACY"
-
-# CVS file is inside, do not erase
-#rm -rf autom4te.cache
-rm -rf aclocal.m4
-
-make distclean
-
-./bootstrap
-
-if [ $1 == "debug" ]
-then 
-  F77=gfortran ./configure --prefix=$dir/$TRACY/tracy FFLAGS="-g -O2  -Wall -fbounds-check" CFLAGS="-g -O2  -Wall -fno-implicit-templates" CXXFLAGS="-g -O2  -Wall -fno-implicit-templates"
-fi
-
-if [ $1 == "opt" ]
-then 
-./configure --prefix=$dir/$TRACY/tracy FFLAGS="-O2  -Wall -fbounds-check" CFLAGS="-O2  -Wall -fno-implicit-templates" CXXFLAGS="-O2  -Wall -fno-implicit-templates"
-fi
-
-make
-make install
diff --git a/make_for_isei.sh b/make_for_isei.sh
deleted file mode 100755
index 3d54e724d460ff1d52679e8808e31e6093da5e71..0000000000000000000000000000000000000000
--- a/make_for_isei.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-dir=`pwd`
-
-#NUM_REC="$dir/num_rec"
-
-#INSTALL="/usr/bin/install"
-
-TRACY="tracy"
-
-cd "$dir/$TRACY"
-
-export TRACY_LIB="$dir/tracy"
-export NUM_REC="/usr/local/applications/physmach/recipes_c-ansi"
-
-rm -rf autom4te.cache
-rm -rf aclocal.m4
-
-make distclean
-
-./bootstrap
-FFLAGS="-O2  -Wall -fbounds-check" CXXFLAGS="-O2  -Wall -fno-implicit-templates" CC=icc F77=ifort CXX=icc ./configure --prefix=$dir/$TRACY/tracy 
-
-make
-make install
diff --git a/make_tracy-3.5.sh b/make_tracy-3.5.sh
deleted file mode 100755
index c001fdaa50b7e49d25fdfa0d6dcec3b15764ee2f..0000000000000000000000000000000000000000
--- a/make_tracy-3.5.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-dir=`pwd`
-
-#NUM_REC="$dir/num_rec"
-
-#INSTALL="/usr/bin/install"
-
-TRACY="tracy"
-
-cd "$dir/$TRACY"
-
-rm -rf autom4te.cache
-rm -rf aclocal.m4
-
-make distclean
-
-./bootstrap
-./configure --prefix=$dir/$TRACY/tracy
-
-make
-make install