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
Merge remote-tracking branch 'origin/release-v4.6.1'
[WRF.git]
/
hydro
/
Debug_Utilities
/
Makefile
blob
0db4c91319522057863f92c85b265face6a9c284
1
# Makefile
2
#
3
.SUFFIXES
:
4
.SUFFIXES
:
.o .F90
5
6
include
..
/
macros
7
8
OBJS
=
\
9
debug_dump_variable.o
10
11
all
: $(
OBJS
)
12
13
.F90.o
:
14
@echo
""
15
$(
COMPILER90
) $(
CPPINVOKE
) $(
CPPFLAGS
) -
I
$(
NETCDFINC
) -
o
$(
@
) $(
F90FLAGS
) $(
LDFLAGS
) $(
MODFLAG
) -
I..
/
mod
$(*)
.F90
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
*
~