Changeset 9 for trunk


Ignore:
Timestamp:
12/12/08 13:06:51 (15 years ago)
Author:
pinsard
Message:

bug fix for user/location independency of working space

Location:
trunk/adm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/adm/guides/makefile

    r7 r9  
    55# 
    66# generation of documentations from XML files in HTML and wiki forms 
    7 # 
    87# 
    98# FILES 
     
    2827ircaam 
    2928 
    30 DIRBASE = \ 
    31 /usr/home/fplod/incas/$(PRODUCT)/$(PRODUCT)_ws/ 
    32  
    3329DIRSRC = \ 
    34 $(DIRBASE)/adm/guides/ 
     30./ 
    3531 
    3632DIRTMP = \ 
     
    3834 
    3935DIRWWW = \ 
    40 $(DIRBASE)/doc/guides/ 
     36../../doc/guides/ 
    4137 
    4238DIRWIKI = \ 
  • trunk/adm/makefile

    r7 r9  
    44# ====== 
    55# 
    6 # génération des doc ircaam 
     6# génération des manuels ircaam 
    77# 
    88# FILES 
     
    1414# ==== 
    1515# 
    16 # ++ menage des fichiers intermediares latex dans DIRWWW 
    17 # 
    1816# ++ amélioration de la page index 
    1917# 
    20 # ++ faire un livre avec tout 
     18# ++ lien avec les guides 
    2119# 
    2220# EVOLUTIONS 
     
    4240 
    4341PRODUCTNAME = \ 
    44 $$(echo $(PRODUCT) | tr -s [:lower:] [:upper:]) 
     42$$(echo $(PRODUCT) | tr [:lower:] [:upper:]) 
    4543 
    4644SUBPRODUCT = \ 
    4745ircaam_ws 
    4846 
    49 DIRBASE = \ 
    50 /usr/home/fplod/incas/$(PRODUCT)/$(SUBPRODUCT)/ 
    51  
    5247DIRSRC = \ 
    53 $(DIRBASE)/ 
     48../src/ 
    5449 
    5550DIRTMP = \ 
     
    5752 
    5853DIRWWW = \ 
    59 $(DIRBASE)/doc/ 
     54../doc/ 
    6055 
    6156URLPUBLISH = \ 
     
    6358 
    6459LIST_SRCSH = \ 
    65 $(DIRSRC)/src/$(PRODUCT)_profile.sh \ 
    66 $(DIRSRC)/src/dlogd.sh \ 
    67 $(DIRSRC)/src/elogd.sh \ 
    68 $(DIRSRC)/src/plogd.sh \ 
    69 $(DIRSRC)/src/tlogd.sh 
     60$(DIRSRC)/$(PRODUCT)_profile.sh \ 
     61$(DIRSRC)/dlogd.sh \ 
     62$(DIRSRC)/elogd.sh \ 
     63$(DIRSRC)/plogd.sh \ 
     64$(DIRSRC)/tlogd.sh 
    7065 
    7166.PHONY : \ 
     
    170165$(DIRWWW)/manuals/html/many/index.html : \ 
    171166$(DIRTMP)/index.rst 
    172         @rst2html.py --input-encoding=ISO-8859-15 --strict --time \ 
     167        @rst2html.py --input-encoding=ISO-8859-15 --strict \ 
    173168        $< $@ 
    174169 
    175170$(DIRWWW)/manuals/html/one/index.html : \ 
    176171$(DIRTMP)/$(PRODUCT)_manuals.rst 
    177         @rst2html.py --input-encoding=ISO-8859-15 --strict --time \ 
     172        @rst2html.py --input-encoding=ISO-8859-15 --strict \ 
    178173        $< $@ 
    179174 
     
    184179$(DIRTMP)/$(PRODUCT)_manuals.tex : \ 
    185180$(DIRTMP)/$(PRODUCT)_manuals.rst 
    186         @rst2newlatex.py --input-encoding=ISO-8859-15 --strict --time \ 
     181        @rst2newlatex.py --input-encoding=ISO-8859-15 --strict \ 
    187182        $< $@ 
    188183 
     
    227222$(DIRWWW)/manuals/html/many/$(PRODUCT)_profile.sh.html : \ 
    228223$(DIRTMP)/$(PRODUCT)_profile.sh.rst 
    229         @rst2html.py --input-encoding=ISO-8859-15 --strict --time \ 
     224        @rst2html.py --input-encoding=ISO-8859-15 --strict \ 
    230225        $< $@ 
    231226 
     
    236231$(DIRTMP)/$(PRODUCT)_profile.sh.tex : \ 
    237232$(DIRTMP)/$(PRODUCT)_profile.sh.rst 
    238         @rst2newlatex.py --input-encoding=ISO-8859-15 --strict --time \ 
     233        @rst2newlatex.py --input-encoding=ISO-8859-15 --strict \ 
    239234        $< $@ 
    240235 
    241236$(DIRTMP)/$(PRODUCT)_profile.sh.rst : \ 
    242 $(DIRSRC)/src/$(PRODUCT)_profile.sh 
     237$(DIRSRC)/$(PRODUCT)_profile.sh 
    243238        @extract_rst.sh -i $< -l sh -o $@ 
    244239 
    245240$(DIRWWW)/manuals/html/many/dlogd.sh.html : \ 
    246241$(DIRTMP)/dlogd.sh.rst 
    247         @rst2html.py --input-encoding=ISO-8859-15 --strict --time \ 
     242        @rst2html.py --input-encoding=ISO-8859-15 --strict \ 
    248243        $< $@ 
    249244 
     
    255250$(DIRTMP)/dlogd.sh.tex : \ 
    256251$(DIRTMP)/dlogd.sh.rst 
    257         @rst2newlatex.py --input-encoding=ISO-8859-15 --strict --time \ 
     252        @rst2newlatex.py --input-encoding=ISO-8859-15 --strict \ 
    258253        $< $@ 
    259254 
    260255$(DIRTMP)/dlogd.sh.rst : \ 
    261 $(DIRSRC)/src/dlogd.sh 
     256$(DIRSRC)/dlogd.sh 
    262257        @extract_rst.sh -i $< -l sh -o $@ 
    263258 
    264259$(DIRWWW)/manuals/html/many/elogd.sh.html : \ 
    265260$(DIRTMP)/elogd.sh.rst 
    266         @rst2html.py --input-encoding=ISO-8859-15 --strict --time \ 
     261        @rst2html.py --input-encoding=ISO-8859-15 --strict \ 
    267262        $< $@ 
    268263 
     
    274269$(DIRTMP)/elogd.sh.tex : \ 
    275270$(DIRTMP)/elogd.sh.rst 
    276         @rst2newlatex.py --input-encoding=ISO-8859-15 --strict --time \ 
     271        @rst2newlatex.py --input-encoding=ISO-8859-15 --strict \ 
    277272        $< $@ 
    278273 
    279274$(DIRTMP)/elogd.sh.rst : \ 
    280 $(DIRSRC)/src/elogd.sh 
     275$(DIRSRC)/elogd.sh 
    281276        @extract_rst.sh -i $< -l sh -o $@ 
    282277 
    283278$(DIRWWW)/manuals/html/many/plogd.sh.html : \ 
    284279$(DIRTMP)/plogd.sh.rst 
    285         @rst2html.py --input-encoding=ISO-8859-15 --strict --time \ 
     280        @rst2html.py --input-encoding=ISO-8859-15 --strict \ 
    286281        $< $@ 
    287282 
     
    293288$(DIRTMP)/plogd.sh.tex : \ 
    294289$(DIRTMP)/plogd.sh.rst 
    295         @rst2newlatex.py --input-encoding=ISO-8859-15 --strict --time \ 
     290        @rst2newlatex.py --input-encoding=ISO-8859-15 --strict \ 
    296291        $< $@ 
    297292 
    298293$(DIRTMP)/plogd.sh.rst : \ 
    299 $(DIRSRC)/src/plogd.sh 
     294$(DIRSRC)/plogd.sh 
    300295        @extract_rst.sh -i $< -l sh -o $@ 
    301296 
    302297$(DIRWWW)/manuals/html/many/tlogd.sh.html : \ 
    303298$(DIRTMP)/tlogd.sh.rst 
    304         @rst2html.py --input-encoding=ISO-8859-15 --strict --time \ 
     299        @rst2html.py --input-encoding=ISO-8859-15 --strict \ 
    305300        $< $@ 
    306301 
     
    312307$(DIRTMP)/tlogd.sh.tex : \ 
    313308$(DIRTMP)/tlogd.sh.rst 
    314         @rst2newlatex.py --input-encoding=ISO-8859-15 --strict --time \ 
     309        @rst2newlatex.py --input-encoding=ISO-8859-15 --strict \ 
    315310        $< $@ 
    316311 
    317312$(DIRTMP)/tlogd.sh.rst : \ 
    318 $(DIRSRC)/src/tlogd.sh 
    319         @extract_rst.sh -i $< -l sh -o $@ 
     313$(DIRSRC)/tlogd.sh 
     314        @extract_rst.sh -i $< -l sh -o $@ 
Note: See TracChangeset for help on using the changeset viewer.