source: XMLF90-doc/Examples/xpath/makefile @ 1269

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

Import des sources XMLF90

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