Home | History | Annotate | Download | only in crunchgen

Lines Matching defs:cachef

766     FILE *cachef;
772 if ((cachef = fopen(cachename, "w")) == NULL) {
778 fprintf(cachef, "# %s - parm cache generated from %s by crunchgen %s\n\n",
782 fprintf(cachef, "\n");
784 fprintf(cachef, "special %s srcdir %s\n", p->name, p->srcdir);
786 fprintf(cachef, "special %s objdir %s\n", p->name, p->objdir);
788 fprintf(cachef, "special %s objs", p->name);
789 output_strlst(cachef, p->objs);
792 fprintf(cachef, "special %s objpaths", p->name);
793 output_strlst(cachef, p->objpaths);
796 fclose(cachef);