source: lmdz_wrf/WRFV3/external/atm_ocn/Makefile @ 1

Last change on this file since 1 was 1, checked in by lfita, 10 years ago
  • -- --- Opening of the WRF+LMDZ coupling repository --- -- -

WRF: version v3.3
LMDZ: version v1818

More details in:

File size: 679 bytes
Line 
1.SUFFIXES: .F .o
2FFLAGS = -I../io_int
3
4OBJ  =          module_PATCH_QUILT.o \
5        atm_comm.o  \
6        atm_tiles.o     \
7        cmpcomm.o       \
8        mpi_more.o
9
10AR = ar
11ARFLAGS = cr
12TARGET = libatm_ocn.a
13
14library: $(OBJ)
15        $(AR) $(ARFLAGS) $(TARGET) $(OBJ)
16        $(RANLIB) $(TARGET)
17
18.F.o:
19        $(CPP) $(CPPFLAGS) -DDM_PARALLEL  $*.F  > $*.f90
20        $(FC) -o $@ -c $(FFLAGS)  $*.f90
21
22clean:
23        rm -f $(OBJ) $(TARGET)
24        rm -f *.f90
25        rm -f *.mod
26
27
28superclean: clean
29# DEPENDENCIES : only dependencies after this line (don't remove the word DEPENDENCIES)
30
31atm_tiles.o: \
32        atm_comm.o \
33        module_PATCH_QUILT.o
34
35atm_comm.o: \
36        cmpcomm.o
37atm_tiles.o:
38cmpcomm.o:
39mpi_more.o:
40
41# DO NOT DELETE
42
Note: See TracBrowser for help on using the repository browser.