Changeset 103 for trunk/adm/makefile


Ignore:
Timestamp:
06/18/10 15:56:29 (14 years ago)
Author:
pinsard
Message:

modif. of headers for manuals hyperlinks improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/adm/makefile

    r101 r103  
    237237man_troff \ 
    238238man_html \ 
    239 man_html_many \ 
    240239man_html_sphinx \ 
    241240man_pdf \ 
    242 man_pdf_many \ 
    243241man_pdf_sphinx 
    244242 
     
    262260before : 
    263261        @mkdir -p $(DIRWWW)/manuals/man/man1/ 
    264         @mkdir -p $(DIRWWW)/manuals/html/many/ 
    265262        @mkdir -p $(DIRWWW)/manuals/html/rest2web/ 
    266263        @mkdir -p $(DIRWWW)/manuals/html/rest2web/css/ 
    267264        @mkdir -p $(DIRWWW)/manuals/html/sphinx/ 
    268         @mkdir -p $(DIRWWW)/manuals/pdf/many/ 
    269265        @mkdir -p $(DIRWWW)/manuals/pdf/sphinx/ 
    270266        @mkdir -p $(DIRTMP)/sphinx_tmpdir/doctrees/ 
     
    287283        -@rm -rf $(DIRTMP)/rest2web_tmpdir/ 
    288284        -@rm -f $(DIRTMP)/rest2web.log 
    289         -@rm -f $(DIRWWW)/manuals/pdf/many/*.aux 
    290         -@rm -f $(DIRWWW)/manuals/pdf/many/*.log 
    291         -@rm -f $(DIRWWW)/manuals/pdf/many/*.out 
    292285        -@rm -rf $(DIRTMP)/sphinx_tmpdir/ 
    293286        -@rm -f $(DIRTMP)/sphinx_*.log 
     
    308301 
    309302all : \ 
    310 man_troff \ 
    311303man_html \ 
    312304man_pdf 
    313305 
    314 man_troff : \ 
    315 $(LIST_SRCSH_TROFF) \ 
    316 $(LIST_SRCPHP_TROFF) \ 
    317 $(LIST_SRCXSL_TROFF) 
    318  
    319306man_html : \ 
    320 man_html_many \ 
    321307man_html_sphinx 
    322  
    323 man_html_many : \ 
    324 $(DIRWWW)/manuals/html/many/index.html \ 
    325 $(LIST_SRCSH_HTML) \ 
    326 $(LIST_SRCXSL_HTML) \ 
    327 $(LIST_SRCPHP_HTML) 
    328308 
    329309man_html_sphinx : \ 
     
    343323 
    344324man_pdf : \ 
    345 man_pdf_many \ 
    346325man_pdf_sphinx 
    347  
    348 man_pdf_many : \ 
    349 $(LIST_SRCSH_PHP) \ 
    350 $(LIST_SRCXSL_PHP) \ 
    351 $(LIST_SRCPHP_PHP) 
    352326 
    353327man_pdf_sphinx : \ 
     
    369343           $(DIRWWW)/manuals/pdf/sphinx/ 
    370344 
    371 $(DIRWWW)/manuals/html/many/index.html : \ 
    372 $(DIRTMP)/index_many.rst 
    373         @$(RST2HTML) --input-encoding=ISO-8859-15 --strict \ 
    374         $< $@ 
    375  
    376 $(DIRTMP)/index_many.rst : 
    377         @echo "$(PRODUCTNAME) manuals" | tr [:print:] = > $@ 
    378         @echo "$(PRODUCTNAME) manuals" >> $@ 
    379         @echo "$(PRODUCTNAME) manuals" | tr [:print:] = >> $@ 
    380         @echo " " >> $@ 
    381         @echo "Shell scripts" >> $@ 
    382         @echo "Shell scripts" | tr [:print:] = >> $@ 
    383         @for file in $(LIST_SRCSH); do echo " ";echo "$$(basename $${file})_"; echo " "; echo ".. _$$(basename $${file}) : $$(basename $${file}).html"; done >> $@ 
    384         @echo " " >> $@ 
    385         @echo "XSL scripts" >> $@ 
    386         @echo "XSL scripts" | tr [:print:] = >> $@ 
    387         @for file in $(LIST_SRCXSL); do echo " ";echo "$$(basename $${file})_"; echo " "; echo ".. _$$(basename $${file}) : $$(basename $${file}).html"; done >> $@ 
    388         @echo " " >> $@ 
    389         @echo "PHP scripts" >> $@ 
    390         @echo "PHP scripts" | tr [:print:] = >> $@ 
    391         @for file in $(LIST_SRCPHP); do echo " ";echo "$$(basename $${file})_"; echo " "; echo ".. _$$(basename $${file}) : $$(basename $${file}).html"; done >> $@ 
    392  
    393345$(DIRTMP)/sphinx_tmpdir/index.rst : 
    394346        @echo ".. _index:" >> $@ 
     
    444396        $< $@ 
    445397 
    446 $(DIRWWW)/manuals/pdf/many/%.pdf : $(DIRTMP)/%.tex 
    447         @-pdflatex -output-directory $(DIRWWW)/manuals/pdf/many/ $< 
    448         @-pdflatex -output-directory $(DIRWWW)/manuals/pdf/many/ $< 
    449  
    450398$(DIRTMP)/%.tex : $(DIRTMP)/%.rst 
    451399        @$(RST2LATEX) $(RST2LATEX_OPTIONS_MANY) --input-encoding=ISO-8859-15 --strict \ 
Note: See TracChangeset for help on using the changeset viewer.