Changeset 1022 in kBuild
- Timestamp:
- Jun 4, 2007 1:04:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/read.c
r1021 r1022 2149 2149 if (cmds != 0) 2150 2150 f->cmds = cmds; 2151 2152 #ifdef CONFIG_WITH_EXPLICIT_MULTITARGET 2153 /* If this is an explicit multi target rule, add it to the 2154 target chain and set the multi_maybe flag according to 2155 the current mode. */ 2156 2157 if (multi_mode >= m_yes) 2158 { 2159 f->multi_maybe = multi_mode == m_yes_maybe; 2160 prev_file->multi_next = f; 2161 assert (prev_file->multi_head != 0); 2162 f->multi_head = prev_file->multi_head; 2163 2164 if (f == suffix_file) 2165 error (flocp, 2166 _(".SUFFIXES encountered in an explicit multi target rule")); 2167 } 2168 prev_file = f; 2169 #endif 2151 2170 2152 2171 /* Defining .SUFFIXES with no dependencies clears out the list of
Note:
See TracChangeset
for help on using the changeset viewer.