Changeset 921 for trunk/src/gmakenew/filedef.h
- Timestamp:
- May 25, 2007, 5:27:53 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmakenew/filedef.h
r903 r921 61 61 the same file. Otherwise this is null. */ 62 62 struct file *double_colon; 63 64 #ifdef CONFIG_WITH_EXPLICIT_MULTITARGET 65 /* For a target of an explicit multi target rule, this points to the 66 primary target. Otherwise this is null. */ 67 struct file *multi_head; 68 /* Pointer to next target of an explicit multi target rule. */ 69 struct file *multi_next; 70 #endif 63 71 64 72 short int update_status; /* Status of the last attempt to update, … … 95 103 unsigned int considered:1; /* equal to 'considered' if file has been 96 104 considered on current scan of goal chain */ 105 #ifdef CONFIG_WITH_EXPLICIT_MULTITARGET 106 unsigned int multi_maybe:1; /* Nonzero if this file may not always be 107 touched/created by the multi target rule. */ 108 #endif 109 97 110 }; 98 111
Note:
See TracChangeset
for help on using the changeset viewer.