Last change
on this file since 4993 was
4728,
checked in by idelkadi, 13 months ago
|
Update of ecrad in the LMDZ_ECRad branch of LMDZ:
- version 1.6.1 of ecrad
- files are no longer grouped in the same ecrad directory.
- the structure of ecrad offline is preserved to facilitate updating in LMDZ
- cfg.bld modified to take into account the new added subdirectories.
- the interface routines and those added in ecrad are moved to the phylmd directory
|
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.