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/simple – NEMO

source: vendors/XMLF90/current/doc/Examples/sax/simple/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: 474 bytes
Line 
1#
2# Makefile for example of XML processing with all kinds of handlers
3# and features.
4#
5default: example
6#
7#---------------------------
8MK=$(FLIB_ROOT)/fortran.mk
9include $(MK)
10#---------------------------
11#
12# Uncomment the following line for debugging support
13#
14FFLAGS=$(FFLAGS_DEBUG)
15#
16LIBS=$(LIB_PREFIX)$(LIB_STD) -lflib
17#
18OBJS= m_handlers.o example.o
19     
20example:  $(OBJS)
21   $(FC) $(LDFLAGS) -o $@ $(OBJS)  $(LIBS)
22#
23clean: 
24   rm -f *.o example *.$(MOD_EXT)
25#
26
27
28
29
30
31
32
33
34
35
Note: See TracBrowser for help on using the repository browser.