Changeset 6632 for trunk/tools
- Timestamp:
- Sep 4, 2001, 3:48:29 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/fastdep/fastdep.c
r6158 r6632 1 /* $Id: fastdep.c,v 1. 29 2001-07-03 21:59:56bird Exp $1 /* $Id: fastdep.c,v 1.30 2001-09-04 13:48:29 bird Exp $ 2 2 * 3 3 * Fast dependents. (Fast = Quick and Dirty!) … … 867 867 { 868 868 printf( 869 "FastDep v0.4 0\n"869 "FastDep v0.41\n" 870 870 "Dependency scanner. Creates a makefile readable depend file.\n" 871 871 " - was quick and dirty, now it's just quick -\n" … … 2065 2065 2066 2066 /* add extention .cpy - hardcoded for the moment. */ 2067 strc at(szFullname, ".cpy");2067 strcpy(&szFullname[j], ".cpy"); 2068 2068 2069 2069 /* find include file! */ 2070 2070 psz = pathlistFindFile(options.pszInclude, szFullname, szBuffer); 2071 if (!psz) 2072 { 2073 strcpy(&szFullname[j], ".cbl"); 2074 psz = pathlistFindFile(options.pszInclude, szFullname, szBuffer); 2075 } 2071 2076 2072 2077 /* did we find the include? */ … … 2080 2085 else 2081 2086 { 2082 fprintf(stderr, "%s(%d): warning include file '%s' not found!\n", 2087 szFullname[j] = '\0'; 2088 fprintf(stderr, "%s(%d): warning copybook '%s' was not found!\n", 2083 2089 pszFilename, iLine, szFullname); 2084 2090 depMarkNotFound(pvRule);
Note:
See TracChangeset
for help on using the changeset viewer.