Changeset 2594 for trunk/src/kmk/function.c
- Timestamp:
- Jun 18, 2012, 1:29:07 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/function.c
r2592 r2594 3004 3004 /* Implements $^ and $+. 3005 3005 3006 The first is somes withwith FUNCNAME 'deps', the second as 'deps-all'.3006 The first comes with FUNCNAME 'deps', the second as 'deps-all'. 3007 3007 3008 3008 If no second argument is given, or if it's empty, or if it's zero, … … 3040 3040 if (file) 3041 3041 { 3042 struct dep *deps = funcname[4] != '\0' && file->org_deps 3043 ? file->org_deps : file->deps; 3042 struct dep *deps; 3044 3043 struct dep *d; 3044 if (funcname[4] == '\0') 3045 { 3046 deps = file->deps_no_dupes; 3047 if (!deps && file->deps) 3048 deps = file->deps = create_uniqute_deps_chain (file->deps); 3049 } 3050 else 3051 deps = file->deps; 3045 3052 3046 3053 if ( file->double_colon
Note:
See TracChangeset
for help on using the changeset viewer.