-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile_all.sh
42 lines (42 loc) · 1.06 KB
/
compile_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
cd SUBS
make
cd ..
if test ! -r subslib.a
then
echo "Failed to create library subslib.a"
fi
make oneEventPairVectorSolve
make oneSlovecPairVectorSolve
make fixedSlovecsEventSolve
make fixedEventsSlovecsSolve
make regressionRelLoc
make checkcircvc
for file in \
bin/oneEventPairVectorSolve \
bin/oneSlovecPairVectorSolve \
bin/fixedSlovecsEventSolve \
bin/fixedEventsSlovecsSolve \
bin/regressionRelLoc \
bin/checkcircvc
do
if test ! -r $file
then
echo Failed to create executable $file
fi
chmod 755 $file
done
chmod 755 run_Finland_two_slovecs.sh
chmod 755 run_DPRK_two_events.sh
chmod 755 run_Finland_two_events.sh
chmod 755 run_DPRK_abs_events.sh
chmod 755 run_Finland_abs_events.sh
chmod 755 run_DPRK_regressionRelLoc.sh
chmod 755 run_Finland_regressionRelLoc.sh
chmod 755 run_DPRK12345_regressionRelLoc.sh
chmod 755 run_DPRK_abs_eventsAK135.sh
chmod 755 run_DPRK_abs_eventsCORRECTED.sh
chmod 755 run_Finland_abs_eventsAK135.sh
chmod 755 run_Finland_abs_eventsREGRELLOC.sh
chmod 755 XY2LATLON/run_xy2latlon.sh
chmod 755 XY2LATLON/xy2latlon.py