New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
makefile in vendors/XMLF90/current/doc/Examples/wxml – NEMO

source: vendors/XMLF90/current/doc/Examples/wxml/makefile @ 1967

Last change on this file since 1967 was 1967, checked in by flavoni, 14 years ago

importing XMLF90 vendor

File size: 511 bytes
Line 
1#
2# Makefile for WXML examples
3#
4default: all
5all:  simple pseudo
6#
7#---------------------------
8MK=$(FLIB_ROOT)/fortran.mk
9include $(MK)
10#---------------------------
11#
12# Uncomment the following line for debugging support
13#
14#FFLAGS=$(FFLAGS_DEBUG)
15#
16LIBS=$(LIB_PREFIX)$(LIB_STD) -lflib
17#
18simple: simple.o
19   $(FC) $(LDFLAGS) -o simple simple.o  $(LIBS)
20#
21pseudo: m_pseudo_utils.o pseudo.o
22   $(FC) $(LDFLAGS) -o pseudo m_pseudo_utils.o pseudo.o  $(LIBS)
23#
24clean: 
25   rm -f simple pseudo  *.o *.$(MOD_EXT)
26#
27
28
29
30
31
32
33
34
35
36
Note: See TracBrowser for help on using the repository browser.