Lines Matching defs:include
58 for you to include and use in your makefile. It also contains
61 and recursively determines which other files include it, and how
69 #include <stdio.h>
70 #include <stdarg.h>
71 #include <time.h>
72 #include <sys/time.h>
74 #include <dirent.h>
75 #include <sys/stat.h>
77 #include <string>
78 #include <set>
79 #include <map>
80 #include <vector>
316 FileRec *include,
354 * of which other files include them.
752 * Add an include file name to a file record. If the name
753 * is not found in allFiles explicitly, try prepending include
795 * Lightly parse a file to find the #include directives. Do
855 //# #include! yaay
856 else if (sequ(pos, "#include"))
880 * Recursively check include lists to find all files in allFiles to which
884 FileRec *include,
888 for (iter=include->files.begin() ; iter!=include->files.end() ; iter++)
909 * Recursively check include lists to find all files in allFiles which
962 FileRec *include = iter->second;
963 if (include->type == FileRec::CFILE)
967 ofile->path = include->path;
968 ofile->baseName = include->baseName;
969 ofile->suffix = include->suffix;
970 String fname = include->path;
973 fname.append(include->baseName);
977 ofile->files[cFileName] = include;
980 processDependency(ofile, include, 0);
983 else if (include->type == FileRec::HFILE)
987 hfile->path = include->path;
988 hfile->baseName = include->baseName;
989 hfile->suffix = include->suffix;
1274 * Save the "reference" file, which lists each include file, and any files