source: TRACY3/trunk/make_for_gcc.sh @ 5

Last change on this file since 5 was 3, checked in by zhangj, 12 years ago

Initiale import

  • Property svn:executable set to *
File size: 455 bytes
Line 
1#!/bin/bash
2# not sh since on Ubuntu sh is not bash
3set -x # for debugging
4
5
6
7dir=`pwd`
8#NUM_REC="$dir/num_rec"
9
10#INSTALL="/usr/bin/install"
11
12TRACY="tracy"
13
14cd "$dir/$TRACY"
15
16# CVS file is inside, do not erase
17#rm -rf autom4te.cache
18rm -rf aclocal.m4
19
20make distclean
21
22./bootstrap
23
24FFLAGS="-g -O2  -Wall -fbounds-check" CXXFLAGS="-g -O2  -Wall -fno-implicit-templates" CC=gcc F77=gfortran CXX=g++ ./configure --prefix=$dir/$TRACY/tracy
25
26
27make
28make install
Note: See TracBrowser for help on using the repository browser.