ack/util/cpp/main.c

152 lines
3.1 KiB
C
Raw Normal View History

1987-03-10 11:49:39 +00:00
/* $Header$ */
1987-03-09 19:15:41 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1987-01-06 15:16:53 +00:00
/* MAIN PROGRAM */
#include <alloc.h>
#include <em_arith.h>
#include <assert.h>
#include <system.h>
1987-01-06 15:16:53 +00:00
#include "file_info.h"
#include "idfsize.h"
#include "idf.h"
#include "macro.h"
1987-01-06 15:16:53 +00:00
extern char *symbol2str();
1987-01-16 16:14:22 +00:00
extern char *getwdir();
1987-01-06 15:16:53 +00:00
extern int err_occurred;
extern int do_dependencies;
extern char *dep_file;
1987-01-06 15:16:53 +00:00
int idfsize = IDFSIZE;
extern char options[];
static File *dep_fd = STDOUT;
1987-01-06 15:16:53 +00:00
arith ifval;
1987-01-06 15:16:53 +00:00
char *prog_name;
extern char **inctable;
extern int inc_max, inc_total;
1987-01-06 15:16:53 +00:00
main(argc, argv)
char *argv[];
{
/* parse and interpret the command line options */
prog_name = argv[0];
init_idf();
inctable = (char **) Malloc(10 * sizeof(char *));
inc_max = 10;
inc_total = 3;
inctable[0] = "";
inctable[1] = "/usr/include";
1992-02-26 13:38:34 +00:00
inctable[2] = 0;
1987-01-06 15:16:53 +00:00
init_pp(); /* initialise the preprocessor macros */
/* Note: source file "-" indicates that the source is supplied
as standard input. This is only allowed if INP_READ_IN_ONE is
not defined!
*/
while (argc > 1 && *argv[1] == '-' && argv[1][1] != '\0') {
char *par = &argv[1][1];
if (*par == '-')
par++;
do_option(par);
argc--, argv++;
}
compile(argc - 1, &argv[1]);
exit(err_occurred);
1987-01-06 15:16:53 +00:00
}
compile(argc, argv)
char *argv[];
{
register char *source = 0;
char *dummy;
switch (argc) {
case 1:
source = argv[0];
FileName = source;
break;
case 0:
FileName = "";
WorkingDir = "";
1987-01-06 15:16:53 +00:00
break;
default:
FileName = argv[0];
1987-01-06 15:16:53 +00:00
fatal("use: %s [options] [source]", prog_name);
break;
}
if (!InsertFile(source, (char **) 0, &dummy)) /* read the source file */
fatal("%s: no source file %s\n", prog_name,
source ? source : "stdin");
1987-03-02 16:43:19 +00:00
if (source) WorkingDir = getwdir(dummy);
1987-01-06 15:16:53 +00:00
preprocess(source);
if (do_dependencies) list_dependencies(source);
1987-01-06 15:16:53 +00:00
}
struct idf *file_head;
extern char *strrindex();
list_dependencies(source)
char *source;
{
register struct idf *p = file_head;
if (source) {
register char *s = strrindex(source, '.');
if (s && *(s+1)) {
s++;
*s++ = 'o';
*s = '\0';
/* the source may be in another directory than the
* object generated, so don't include the pathname
* leading to it.
*/
if (s = strrindex(source, '/')) {
source = s + 1;
}
}
else source = 0;
}
if (dep_file && !sys_open(dep_file, OP_WRITE, &dep_fd)) {
fatal("could not open %s", dep_file);
}
while (p) {
assert(p->id_resmac == K_FILE);
dependency(p->id_text, source);
p = p->id_file;
}
}
add_dependency(s)
char *s;
{
register struct idf *p = str2idf(s, 0);
if (! p->id_resmac) {
p->id_resmac = K_FILE;
p->id_file = file_head;
file_head = p;
}
}
dependency(s, source)
char *s, *source;
{
1990-06-06 16:01:03 +00:00
if (options['i'] && !strncmp(s, "/usr/include/", 13)) {
return;
}
if (options['m'] && source) {
fprint(dep_fd, "%s: %s\n", source, s);
}
else fprint(dep_fd, "%s\n", s);
}