Last change
on this file since 5319 was
4773,
checked in by idelkadi, 11 months ago
|
- Update of Ecrad in LMDZ
The same organization of the Ecrad offline version is retained in order to facilitate the updating of Ecrad in LMDZ and the comparison between online and offline results.
version 1.6.1 of Ecrad (https://github.com/lguez/ecrad.git)
- Implementation of the double call of Ecrad in LMDZ
|
File size:
337 bytes
|
Line | |
---|
1 | SOURCES = easy_netcdf.F90 radiation_io.F90 random_numbers_mix.F90 print_matrix.F90 |
---|
2 | |
---|
3 | OBJECTS := $(SOURCES:.F90=.o) |
---|
4 | LIBUTILITIES = ../lib/libutilities.a |
---|
5 | |
---|
6 | all: $(LIBUTILITIES) |
---|
7 | |
---|
8 | $(LIBUTILITIES): $(OBJECTS) |
---|
9 | ar r $(LIBUTILITIES) $(OBJECTS) |
---|
10 | |
---|
11 | %.o: %.F90 |
---|
12 | $(FC) $(FCFLAGS) -c $< |
---|
13 | |
---|
14 | clean: |
---|
15 | rm -f *.o $(LIBUTILITIES) |
---|
16 | |
---|
17 | easy_netcdf.o: radiation_io.o |
---|
Note: See
TracBrowser
for help on using the repository browser.