forked from jkbk2004/stochastic_physics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
93 lines (76 loc) · 2.83 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
SHELL = /bin/sh
inside_nems := $(wildcard ../../../conf/configure.nems)
ifneq ($(strip $(inside_nems)),)
include ../../../conf/configure.nems
else
exist_configure_fv3 := $(wildcard ../FV3/conf/configure.fv3)
ifneq ($(strip $(exist_configure_fv3)),)
include ../FV3/conf/configure.fv3
else
$(error "../FV3/conf/configure.fv3 file is missing. Run ./configure")
endif
$(info )
$(info Build standalone FV3 stochastic_physics ...)
$(info )
endif
LIBRARY = libstochastic_physics.a
FFLAGS += -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I$(FMS_DIR)
SRCS_F =
SRCS_f90 = \
./plumes.f90
SRCS_f = \
./stochy_gg_def.f \
./stochy_layout_lag.f \
./four_to_grid_stochy.f \
./glats_stochy.f \
./sumfln_stochy.f \
./gozrineo_stochy.f \
./get_ls_node_stochy.f \
./get_lats_node_a_stochy.f \
./setlats_a_stochy.f \
./setlats_lag_stochy.f \
./epslon_stochy.f \
./getcon_lag_stochy.f \
./pln2eo_stochy.f \
./dozeuv_stochy.f \
./dezouv_stochy.f
SRCS_F90 = \
./kinddef.F90 \
./mpi_wrapper.F90 \
./halo_exchange.fv3.F90 \
./spectral_layout.F90 \
./getcon_spectral.F90 \
./stochy_namelist_def.F90 \
./compns_stochy.F90 \
./stochy_internal_state_mod.F90 \
./stochastic_physics.F90 \
./stochy_patterngenerator.F90 \
./stochy_data_mod.F90 \
./get_stochy_pattern.F90 \
./initialize_spectral_mod.F90 \
./cellular_automata_global.F90 \
./cellular_automata_sgs.F90 \
./update_ca.F90 \
./lndp_apply_perts.F90
SRCS_c =
DEPEND_FILES = $(SRCS_f) $(SRCS_f90) $(SRCS_F) $(SRCS_F90)
OBJS_f = $(SRCS_f:.f=.o)
OBJS_f90 = $(SRCS_f90:.f90=.o)
OBJS_F = $(SRCS_F:.F=.o)
OBJS_F90 = $(SRCS_F90:.F90=.o)
OBJS_c = $(SRCS_c:.c=.o)
OBJS = $(OBJS_f) $(OBJS_f90) $(OBJS_F) $(OBJS_F90) $(OBJS_c)
all default: depend $(LIBRARY)
$(LIBRARY): $(OBJS)
$(AR) $(ARFLAGS) $@ $?
.PHONY: clean
clean:
@echo "Cleaning stochastic_physics ... "
@echo
$(RM) -f $(LIBRARY) *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend
MKDEPENDS = ../FV3/mkDepends.pl
include ../FV3/conf/make.rules
# do not include 'depend' file if the target contains string 'clean'
ifneq (clean,$(findstring clean,$(MAKECMDGOALS)))
-include depend
endif