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/sax/pseudo – NEMO

source: vendors/XMLF90/current/doc/Examples/sax/pseudo/makefile @ 1960

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

importing XMLF90 r_53 vendor

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