new copyright; att/bsd/shared
[unix-history] / usr / src / usr.bin / pascal / pdx / command / remake.c
/*-
* Copyright (c) 1982 The Regents of the University of California.
* All rights reserved.
*
* %sccs.include.redist.c%
*/
#ifndef lint
static char sccsid[] = "@(#)remake.c 5.3 (Berkeley) %G%";
#endif /* not lint */
/*
* Remake the object file from the source.
*/
#include "defs.h"
#include "command.h"
#include "object.h"
/*
* Invoke "pi" on the dotpfile, then reread the symbol table information.
*
* We have to save tracing info before, and read it in after, because
* it might contain symbol table pointers.
*
* We also have to restart the process so that px dependent information
* is recomputed.
*/
remake()
{
char *tmpfile;
if (call("pi", stdin, stdout, dotpfile, NIL) == 0) {
if (strcmp(objname, "obj") != 0) {
call("mv", stdin, stdout, "obj", objname, NIL);
}
tmpfile = mktemp(strdup("/tmp/pdxXXXX"));
setout(tmpfile);
status();
unsetout();
bpfree();
objfree();
initstart();
readobj(objname);
setinput(tmpfile);
unlink(tmpfile);
} else {
puts("pi unsuccessful");
}
}