Changeset 173 for trunk/src/makedep/pr.c
- Timestamp:
- Oct 13, 2004, 6:01:50 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/makedep/pr.c
r164 r173 31 31 extern struct inclist inclist[ MAXFILES ], 32 32 *inclistp; 33 extern char *objname; /* bird */ 33 34 extern char *objprefix; 34 35 extern char *objsuffix; … … 87 88 if (current_len + len > width || file != lastfile) { 88 89 lastfile = file; 89 sprintf(buf, "\n%s%s%s: %s", objprefix, base, objsuffix, 90 ip->i_file); 90 if (objname) 91 sprintf(buf, "\n%s: %s", objname, ip->i_file); 92 else 93 sprintf(buf, "\n%s%s%s: %s", objprefix, base, 94 objsuffix, ip->i_file); 91 95 len = current_len = strlen(buf); 92 96 }
Note:
See TracChangeset
for help on using the changeset viewer.