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

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

Import des sources XMLF90

File size: 964 bytes
Line 
1#
2# Makefile for Xpath examples
3#
4default: all
5all: simple euros twoelements item_context  item_context2 self mixing
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)
20euros:  euros.o
21        $(FC) $(LDFLAGS) -o euros euros.o  $(LIBS)
22twoelements:  twoelements.o
23        $(FC) $(LDFLAGS) -o twoelements twoelements.o  $(LIBS)
24item_context:  item_context.o
25        $(FC) $(LDFLAGS) -o item_context item_context.o  $(LIBS)
26item_context2:  item_context2.o
27        $(FC) $(LDFLAGS) -o item_context2 item_context2.o  $(LIBS)
28self:  self.o
29        $(FC) $(LDFLAGS) -o self self.o  $(LIBS)
30mixing:  mixing.o
31        $(FC) $(LDFLAGS) -o mixing mixing.o  $(LIBS)
32#
33clean: 
34        rm -f simple euros twoelements item_context item_context2
35        rm -f self mixing *.o *.$(MOD_EXT)
36#
37
38
39
40
41
42
43
44
45
46
Note: See TracBrowser for help on using the repository browser.