repo.or.cz
/
WRF.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated top-level README and version_decl for V4.5 (#1847)
[WRF.git]
/
hydro
/
Debug_Utilities
/
Makefile
blob
bbba71179fc57f3fc4a70abe43631b7520d45522
1
# Makefile
2
#
3
.SUFFIXES
:
4
.SUFFIXES
:
.o .F
5
6
include
..
/
macros
7
8
OBJS
=
\
9
debug_dump_variable.o
10
11
all
: $(
OBJS
)
12
13
.F.o
:
14
@echo
""
15
$(
COMPILER90
) $(
CPPINVOKE
) $(
CPPFLAGS
) -
I
$(
NETCDFINC
) -
o
$(
@
) $(
F90FLAGS
) $(
LDFLAGS
) $(
MODFLAG
) -
I..
/
mod
$(*)
.F
16
@echo
""
17
ar
-
r ..
/
lib
/
libHYDRO.a
$(
@
)
18
cp
*
.mod ..
/
mod
19
20
# Dependencies:
21
#
22
23
clean
:
24
rm
-
f
*
.o
*
.mod
*
.stb
*
~