source: LMDZ6/trunk/libf/phylmd/ecrad-acc/utilities/Makefile

Last change on this file was 6016, checked in by yann meurdesoif, 3 months ago

Add new ecrad version from DWD ported onto OpenACC, closed from original ecrad ECMWF starting point for LMDZ ecrad version.

Modification from ecrad-lmdz version has been included.

YM

  • Property svn:eol-style set to native
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.