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 |
---|
2 | FFLAGS = -I../io_int |
---|
3 | |
---|
4 | OBJ = module_PATCH_QUILT.o \ |
---|
5 | atm_comm.o \ |
---|
6 | atm_tiles.o \ |
---|
7 | cmpcomm.o \ |
---|
8 | mpi_more.o |
---|
9 | |
---|
10 | AR = ar |
---|
11 | ARFLAGS = cr |
---|
12 | TARGET = libatm_ocn.a |
---|
13 | |
---|
14 | library: $(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 | |
---|
22 | clean: |
---|
23 | rm -f $(OBJ) $(TARGET) |
---|
24 | rm -f *.f90 |
---|
25 | rm -f *.mod |
---|
26 | |
---|
27 | |
---|
28 | superclean: clean |
---|
29 | # DEPENDENCIES : only dependencies after this line (don't remove the word DEPENDENCIES) |
---|
30 | |
---|
31 | atm_tiles.o: \ |
---|
32 | atm_comm.o \ |
---|
33 | module_PATCH_QUILT.o |
---|
34 | |
---|
35 | atm_comm.o: \ |
---|
36 | cmpcomm.o |
---|
37 | atm_tiles.o: |
---|
38 | cmpcomm.o: |
---|
39 | mpi_more.o: |
---|
40 | |
---|
41 | # DO NOT DELETE |
---|
42 | |
---|
Note: See
TracBrowser
for help on using the repository browser.