Changeset 325


Ignore:
Timestamp:
Nov 15, 2006, 5:02:51 PM (18 years ago)
Author:
garonne
Message:

see C.L. 320

Location:
CMT/v1r20b1
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • CMT/v1r20b1/ChangeLog

    r323 r325  
     12006-15-11 Vincent Garonne <garonne@lal.in2p3.fr> 320
     2
     3    * mgr/fragments/group, mgr/fragments/nmake/group: Add macros $(${GROUP}_pre_constituents),  $(${GROUP}_post_constituents) for having target executed by default.
     4   
    152006-14-11 Vincent Garonne <garonne@lal.in2p3.fr> 319
    26
  • CMT/v1r20b1/mgr/fragments/group

    r11 r325  
    33all_groups :: ${GROUP}
    44
    5 ${GROUP} :: $(${GROUP}_dependencies) $(${GROUP}_constituents)
     5${GROUP} :: $(${GROUP}_dependencies)  $(${GROUP}_pre_constituents) $(${GROUP}_constituents)  $(${GROUP}_post_constituents)
    66        @/bin/echo " ${GROUP} ok."
    77
  • CMT/v1r20b1/mgr/fragments/nmake/group

    r11 r325  
    22all_groups :: ${GROUP}
    33
    4 ${GROUP} :: $(${GROUP}_constituents)
     4${GROUP} ::  $(${GROUP}_pre_constituents)  $(${GROUP}_constituents)  $(${GROUP}_post_constituents)
    55        @echo " ${GROUP} ok."
    66
  • CMT/v1r20b1/source/cmt_parser.cxx

    r324 r325  
    70757075
    70767076    const Constituent::ConstituentVector& constituents =
    7077       Constituent::constituents ();
     7077    Constituent::constituents ();
    70787078
    70797079 
    70807080    /// Prepare the auto_imports states in a vector
    7081 
    70827081    cmt_vector<bool> base_auto_imports_states;
    70837082
     
    71237122         */
    71247123
    7125         if (constituent.type == Document) continue;
     7124        if (constituent.type == Document)
     7125        {
     7126                 continue;
     7127        }   
    71267128        if (constituent.imports.size () == 0)
    71277129          {
  • CMT/v1r20b1/source/cmt_project.cxx

    r295 r325  
    15871587                     // else if ? not possible
    15881588                 }
    1589              }                                               
     1589             }
    15901590         }
    15911591         else if (p == -1)
Note: See TracChangeset for help on using the changeset viewer.