source: XMLF90/doc/Examples/sax/count/makefile @ 6

Last change on this file since 6 was 6, checked in by ymipsl, 15 years ago

Import des sources XMLF90

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.