~ubuntu-branches/ubuntu/precise/nordugrid-arc/precise

« back to all changes in this revision

Viewing changes to src/doxygen/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2011-10-24 02:19:37 UTC
  • mfrom: (3.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20111024021937-8whiie90uq2oqsok
Tags: 1.1.0-2
* Backport fixes for endian independent md5 checksum
* Filter out -Wl,-Bsymbolic-functions from default Ubuntu LDFLAGS

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
doc_DATA = ARC1-API.pdf ARC1-Services.pdf ARC1-ChainComponents.pdf ARC1-libarcdata.pdf
4
4
 
5
 
ARC1-API.pdf: Doxyfile.api
6
 
        doxygen Doxyfile.api
 
5
ARC1-API.pdf: $(srcdir)/Doxyfile.api
 
6
        doxygen $(srcdir)/Doxyfile.api
7
7
        ( cd api/latex ; for f in *.tex ; do sed 's/\\doxyref{p\.}/\\doxyref{}{p\.}/g' $$f > $$f.new ; mv $$f.new $$f ; done )
8
8
        make -C api/latex
9
9
        mv api/latex/refman.pdf $@
10
10
        rm -rf api
11
11
 
12
 
ARC1-Services.pdf: Doxyfile.services
13
 
        doxygen Doxyfile.services
 
12
ARC1-Services.pdf: $(srcdir)/Doxyfile.services
 
13
        doxygen $(srcdir)/Doxyfile.services
14
14
        ( cd services/latex ; for f in *.tex ; do sed 's/\\doxyref{p\.}/\\doxyref{}{p\.}/g' $$f > $$f.new ; mv $$f.new $$f ; done )
15
15
        make -C services/latex
16
16
        mv services/latex/refman.pdf $@
17
17
        rm -rf services
18
18
 
19
 
ARC1-ChainComponents.pdf: Doxyfile.chain
20
 
        doxygen Doxyfile.chain
 
19
ARC1-ChainComponents.pdf: $(srcdir)/Doxyfile.chain
 
20
        doxygen $(srcdir)/Doxyfile.chain
21
21
        ( cd chain/latex ; for f in *.tex ; do sed 's/\\doxyref{p\.}/\\doxyref{}{p\.}/g' $$f > $$f.new ; mv $$f.new $$f ; done )
22
22
        make -C chain/latex
23
23
        mv chain/latex/refman.pdf $@
24
24
        rm -rf chain
25
25
 
26
 
ARC1-libarcdata.pdf: Doxyfile.data
27
 
        doxygen Doxyfile.data
 
26
ARC1-libarcdata.pdf: $(srcdir)/Doxyfile.data
 
27
        doxygen $(srcdir)/Doxyfile.data
28
28
        ( cd data/latex ; for f in *.tex ; do sed 's/\\doxyref{p\.}/\\doxyref{}{p\.}/g' $$f > $$f.new ; mv $$f.new $$f ; done )
29
29
        make -C data/latex
30
30
        mv data/latex/refman.pdf $@