source: LMDZ6/branches/LMDZ_ECRad/libf/phylmd/ecrad/utilities/Makefile @ 4999

Last change on this file since 4999 was 4728, checked in by idelkadi, 11 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 
1SOURCES = easy_netcdf.F90 radiation_io.F90 random_numbers_mix.F90 print_matrix.F90
2
3OBJECTS := $(SOURCES:.F90=.o)
4LIBUTILITIES = ../lib/libutilities.a
5
6all: $(LIBUTILITIES)
7
8$(LIBUTILITIES): $(OBJECTS)
9        ar r $(LIBUTILITIES) $(OBJECTS)
10
11%.o: %.F90
12        $(FC) $(FCFLAGS) -c $<
13
14clean:
15        rm -f *.o $(LIBUTILITIES)
16
17easy_netcdf.o: radiation_io.o
Note: See TracBrowser for help on using the repository browser.