source: XMLF90/doc/Tutorial/sax/makefile @ 6

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

Import des sources XMLF90

File size: 518 bytes
Line 
1#
2# Makefile for SAX exercises
3#
4default: all
5all: simple inventory
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#
18simple:  simple.o
19        $(FC) $(LDFLAGS) -o simple simple.o  $(LIBS)
20inventory:  m_handlers.o inventory.o
21        $(FC) $(LDFLAGS) -o inventory m_handlers.o inventory.o  $(LIBS)
22#
23clean: 
24        rm -f simple inventory *.o *.$(MOD_EXT)
25#
26
27
28
29
30
31
32
33
34
35
Note: See TracBrowser for help on using the repository browser.