Home
last modified time | relevance | path

Searched refs:outmk (Results 1 – 1 of 1) sorted by relevance

/src/usr.sbin/crunch/crunchgen/
H A Dcrunchgen.c606 void top_makefile_rules(FILE *outmk);
607 void prog_makefile_rules(FILE *outmk, prog_t *p);
869 FILE *outmk; in gen_output_makefile() local
875 if ((outmk = fopen(outmkname, "w")) == NULL) { in gen_output_makefile()
881 fprintf(outmk, "# %s - generated from %s by crunchgen %s\n\n", in gen_output_makefile()
885 fprintf(outmk, ".include \"%s\"\n", outhdrname); in gen_output_makefile()
887 top_makefile_rules(outmk); in gen_output_makefile()
889 prog_makefile_rules(outmk, p); in gen_output_makefile()
891 fprintf(outmk, "\n# ========\n"); in gen_output_makefile()
892 fclose(outmk); in gen_output_makefile()
[all …]