source: perso/abdelouhab.djerrah/ORCHIDEE/AA_make @ 938

Last change on this file since 938 was 638, checked in by martial.mancip, 12 years ago

Add makeindex and subpath to latex searches.

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