-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (60 loc) · 2.97 KB
/
Makefile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# +----------------------------------------------------------------------------------------+
# | Makefike |
# | |
# | (C) Copyright 2022- ECMWF. |
# | |
# | This software is licensed under the terms of the Apache Licence Version 2.0 |
# | which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. |
# | |
# | In applying this licence, ECMWF does not waive the privileges and immunities |
# | granted to it by virtue of its status as an intergovernmental organisation |
# | nor does it submit to any jurisdiction. |
# | |
# | Author: |
# | Ramiro Checa-Garcia. ECMWF |
# | |
# | Modifications: |
# | 10-Dec-2022 Ramiro Checa-Garcia 1st. version |
# | |
# +----------------------------------------------------------------------------------------+
.PHONY : clean
check :
scripts/check_dependencies.sh
docum :
scripts/build_docs.sh
build : check docum
scripts/build.sh
clean :
scripts/clean.sh
test :
scripts/tests.sh
IFS-example:
@echo ""
@echo " Example of calculation of IFS aerosol optical properties (few wavelengths)"
@echo " -> submitted with sbatch: "
@echo " 1. Check status with squeue -u username"
@echo " 2. Output stored in a logs/calc.short_ifs_example.JOBID.out file."
@echo ""
sbatch scripts/create_shortifs.sh
IFS-sbatch:
@echo ""
@echo " Calculation of IFS aerosol optical properties at high-resolution spectral"
@echo " -> submitted with sbatch: "
@echo " 1. Check status with squeue -u username"
@echo " 2. Output stored in a logs/calc.IFS-version.JOBID.out file."
@echo ""
IFS-CY46R1: IFS-sbatch
@echo " === IFS-CY46R1 ==="
sbatch scripts/create_ifs-cy46r1.sh
IFS-CY48R1: IFS-sbatch
@echo " === IFS-CY48R1 ==="
sbatch scripts/create_ifs-cy48r1.sh
IFS-CY49R1: IFS-sbatch
@echo " === IFS-CY49R1 ==="
sbatch scripts/create_ifs-cy49r1.sh
IFS-CY49R1-McClear: IFS-sbatch
@echo " === IFS-CY49R1-McClear ==="
sbatch scripts/create_McClear.sh
IFS-CY49R1-GRASP: IFS-sbatch
@echo " === IFS-CY49R1-GRASP ==="
sbatch scripts/create_Grasp.sh