Home | History | Annotate | Download | only in make-3.81

Lines Matching defs:batch

708         DB (DB_JOBS, (_("Cleaning up temp batch file %s\n"),
1772 batch of jobs clears out.
2791 FILE* batch = NULL;
2799 DB (DB_JOBS, (_("Creating temporary batch file %s\n"),
2802 /* Create a FILE object for the batch file, and write to it the
2803 commands to be executed. Put the batch file in TEXT mode. */
2805 batch = _fdopen (temp_fd, "wt");
2807 fputs ("@echo off\n", batch);
2808 fputs (command_ptr, batch);
2809 fputc ('\n', batch);
2810 fclose (batch);