source: branches/publications/ORCHIDEE-PEAT_r5488/AA_make @ 5491

Last change on this file since 5491 was 3026, checked in by albert.jornet, 9 years ago

Merge: from perso [2623:3024/perso/albert.jornet/ORCHIDEE-MICT].

It includes ORCHIDEE trunk changes [2247:2749:/trunk/ORCHIDEE] and lots of fixes.

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1#- $Id$
2all_lib : libioipsl libparallel libparameters liborglob libstomate libsechiba
3
4libioipsl:
5        (cd ../IOIPSL/src; $(M_K) -f Makefile)
6
7libparameters :
8        (cd src_parameters ; $(M_K) -f Makefile)
9
10libparallel :
11        (cd ../../modeles/ORCHIDEE/src_parallel ; $(M_K) -f Makefile)
12
13liborglob :
14        (cd src_global ; $(M_K) -f Makefile)
15
16libstomate :
17        (cd src_stomate ; $(M_K) -f Makefile)
18
19libsechiba :
20        (cd src_sechiba ; $(M_K) -f Makefile)
21
22driver : all_lib
23        (cd src_driver ; $(M_K) -f Makefile)
24
25config :
26        (cd src_parameters; $(M_K) -f Makefile config)
27        (cd src_sechiba; $(M_K) -f Makefile config)
28        (cd src_stomate; $(M_K) -f Makefile config)
29
30clean :
31        (cd src_parameters; $(M_K) -f Makefile clean)
32        (cd src_parallel; $(M_K) -f Makefile clean)
33        (cd src_global; $(M_K) -f Makefile clean)
34        (cd src_sechiba; $(M_K) -f Makefile clean)
35        (cd src_stomate; $(M_K) -f Makefile clean)
36        (cd src_driver; $(M_K) -f Makefile clean)
37
38doc:
39        doxygen Doxyfile_ORCHIDEE
40        export TEXINPUTS="${TEXINPUTS}:${PWD}/DOC//"; export BIBINPUTS="${BIBINPUTS}:${PWD}/DOC/BIB//"; cd docs/latex ; latex refman.tex
41
42bib:
43        export TEXINPUTS="${TEXINPUTS}:${PWD}/DOC//"; export BIBINPUTS="${BIBINPUTS}:${PWD}/DOC/BIB//"; cd docs/latex ; bibtex refman
44
45index:
46        export TEXINPUTS="${TEXINPUTS}:${PWD}/DOC//"; export BIBINPUTS="${BIBINPUTS}:${PWD}/DOC/BIB//"; cd docs/latex ; makeindex refman
47
48toc:
49        export TEXINPUTS="${TEXINPUTS}:${PWD}/DOC//"; export BIBINPUTS="${BIBINPUTS}:${PWD}/DOC/BIB//"; cd docs/latex ; latex refman.tex
50
Note: See TracBrowser for help on using the repository browser.