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

source: vendors/XMLF90/current/doc/Examples/sax/count/makefile @ 1967

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

importing XMLF90 vendor

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