]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EPOS/epos167/epos_all
Fixes needed by gfortran, it doesn't perform lazy evaluation (Piotr)
[u/mrichter/AliRoot.git] / EPOS / epos167 / epos_all
1 #!/bin/csh
2
3 rm -fr comp_tmp
4 rm -f epos_all.f
5
6 set files=*.f
7 foreach a  ($files)
8
9 echo $a '>> epos_all.f'
10
11 cat $a >> epos_all.f
12
13 end
14
15 mkdir comp_tmp
16 cp *.inc* comp_tmp/
17 cp epos_all.f comp_tmp/
18
19 cd comp_tmp
20
21 ftnchekl -notruncation -pretty=no-continuation  -no-pure epos_all.f | less
22 #g77 -pg -Wall -fno-automatic -finit-local-zeros -fbounds-check -g epos_all.f
23 cd ..
24