From ae58a5d561a7f10333c5bd278c38b96c7d7af590 Mon Sep 17 00:00:00 2001 From: nadolski <nadolski@9a6e40ed-f3a0-4838-9b4a-bf418f78e88d> Date: Thu, 22 Dec 2011 14:20:41 +0000 Subject: [PATCH] no message --- back_up_tracy-3.5.sh | 25 ---------------------- make_for_gcc.sh | 49 -------------------------------------------- make_for_isei.sh | 25 ---------------------- make_tracy-3.5.sh | 22 -------------------- 4 files changed, 121 deletions(-) delete mode 100755 back_up_tracy-3.5.sh delete mode 100755 make_for_gcc.sh delete mode 100755 make_for_isei.sh delete mode 100755 make_tracy-3.5.sh diff --git a/back_up_tracy-3.5.sh b/back_up_tracy-3.5.sh deleted file mode 100755 index 1ff4af0..0000000 --- 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 a09b231..0000000 --- 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 3d54e72..0000000 --- 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 c001fda..0000000 --- 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 -- GitLab