source: branches/publications/ORCHIDEE-LEAK-r5919/AA_make @ 5925

Last change on this file since 5925 was 1249, checked in by josefine.ghattas, 11 years ago

Correction for "make clean" target.

  • 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        (rm -f ../../lib/*)
38
39doc:
40        doxygen Doxyfile_ORCHIDEE
41        export TEXINPUTS="${TEXINPUTS}:${PWD}/DOC//"; export BIBINPUTS="${BIBINPUTS}:${PWD}/DOC/BIB//"; cd docs/latex ; latex refman.tex
42
43bib:
44        export TEXINPUTS="${TEXINPUTS}:${PWD}/DOC//"; export BIBINPUTS="${BIBINPUTS}:${PWD}/DOC/BIB//"; cd docs/latex ; bibtex refman
45
46index:
47        export TEXINPUTS="${TEXINPUTS}:${PWD}/DOC//"; export BIBINPUTS="${BIBINPUTS}:${PWD}/DOC/BIB//"; cd docs/latex ; makeindex refman
48
49toc:
50        export TEXINPUTS="${TEXINPUTS}:${PWD}/DOC//"; export BIBINPUTS="${BIBINPUTS}:${PWD}/DOC/BIB//"; cd docs/latex ; latex refman.tex
51
Note: See TracBrowser for help on using the repository browser.