char *start, *memory;
unsigned long size;
+ const char *filename;
+ unsigned long line_no;
+
FILE *f;
};
long lines_read = 0;
- char *p = lbuf->start;
char *end = lbuf->start + lbuf->size;
+ char *p = lbuf->start;
while (lbuf->f ? fgets (p, end - p, lbuf->f) : memory_fgets (p, end - p, &(lbuf->memory))) {
}
-static int include_makefile (const char *filename, int bsd) {
+static int include_makefile (const char *src_filename, unsigned long line_no, const char *filename, int bsd) {
struct if_stack *saved_if_stack = cur_if_stack;
char *path, *new_name;
if (ch != '<' && ch != '"') {
- fprintf (stderr, "%s: *** .include filename must be delimited by '\"' or '<'. Stop.\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** .include filename must be delimited by '\"' or '<'. Stop.\n", program_name, src_filename, line_no);
exit (EXIT_FAILURE);
}
if (!(end = strrchr (filename, '>'))) {
- fprintf (stderr, "%s: *** unclosed .include filename. '>' expected. Stop.\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** unclosed .include filename. '>' expected. Stop.\n", program_name, src_filename, line_no);
exit (EXIT_FAILURE);
}
if (!(end = strrchr (filename, '"'))) {
- fprintf (stderr, "%s: *** unclosed .include filename. '\"' expected. Stop.\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** unclosed .include filename. '\"' expected. Stop.\n", program_name, src_filename, line_no);
exit (EXIT_FAILURE);
}
}
- fprintf (stderr, "%s: *** failed to include '%s'. Stop.\n", program_name, filename);
+ fprintf (stderr, "%s: %s: %lu: *** failed to include '%s'. Stop.\n", program_name, src_filename, line_no, filename);
exit (EXIT_FAILURE);
}
char *colon, *semicolonp, *commentp;
long lines_read;
+ unsigned long line_no = 1;
cmds = xmalloc (cmds_sz);
#define record_waiting_files() \
char *p, *src, *dst, *comma, *arg1 = 0, *arg2 = 0;
char ch;
+ line_no = lbuf->line_no;
+ lbuf->line_no += lines_read;
+
if (*line == '\0') {
continue;
}
remove_backslash_newlines (clean);
remove_comment (clean);
- p = clean;
-
- while (isspace ((int) *p)) {
- p++;
- }
+ p = skip_whitespace (clean);
if (*p == '\0') {
continue;
if (!cur_if_stack) {
- fprintf (stderr, "%s: *** extraneous 'else'. Stop.\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** extraneous 'else'. Stop.\n", program_name, lbuf->filename, line_no);
exit (EXIT_FAILURE);
}
} else {
if (*p) {
- fprintf (stderr, "%s: extraneous text after 'else' directive\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: extraneous text after 'else' directive\n", program_name, lbuf->filename, line_no);
}
if (cur_if_stack->has_else) {
- fprintf (stderr, "%s: *** only one 'else' per conditional. Stop.\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** only one 'else' per conditional. Stop.\n", program_name, lbuf->filename, line_no);
exit (EXIT_FAILURE);
}
if (!isspace ((int) *p)) {
- fprintf (stderr, "%s: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, ifneq ? "ifneq" : "ifeq");
+ fprintf (stderr, "%s: %s: %lu: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, lbuf->filename, line_no, ifneq ? "ifneq" : "ifeq");
exit (EXIT_FAILURE);
}
} else {
- fprintf (stderr, "%s: currently only ifeq (arg,arg) is supported\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: currently only ifeq (arg,arg) is supported\n", program_name, lbuf->filename, line_no);
exit (EXIT_FAILURE);
}
if (!isspace ((int) *p)) {
- fprintf (stderr, "%s: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, ifneq ? "ifneq" : "ifeq");
+ fprintf (stderr, "%s: %s: %lu: *** missing separator (%s must be followed by whitespace). Stop.\n", program_name, lbuf->filename, line_no, ifneq ? "ifneq" : "ifeq");
exit (EXIT_FAILURE);
}
p = skip_whitespace (p);
if (*p || !arg1 || !arg2) {
- fprintf (stderr, "%s: extraneous text after '%s' directive\n", program_name, ifneq ? "ifneq" : "ifeq");
+ fprintf (stderr, "%s: %s: %lu: extraneous text after '%s' directive\n", program_name, lbuf->filename, line_no, ifneq ? "ifneq" : "ifeq");
}
p = variable_expand_line (xstrdup (arg1));
ifeq_invalid_syntax:
- fprintf (stderr, "%s: *** invalid syntax in conditional. Stop.", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** invalid syntax in conditional. Stop.", program_name, lbuf->filename, line_no);
exit (EXIT_FAILURE);
}
if (!isspace ((int) *p)) {
- fprintf (stderr, "%s: %s must be followed by whitespace. Stop.", program_name, ifndef ? "ifndef" : "ifdef");
+ fprintf (stderr, "%s: %s: %lu: %s must be followed by whitespace. Stop.", program_name, lbuf->filename, line_no, ifndef ? "ifndef" : "ifdef");
exit (EXIT_FAILURE);
}
if (!cur_if_stack) {
- fprintf (stderr, "%s: *** extraneous 'endif'. Stop.\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** extraneous 'endif'. Stop.\n", program_name, lbuf->filename, line_no);
exit (EXIT_FAILURE);
} else {
}
if (*p) {
- fprintf (stderr, "%s: *** extraneous text after 'endif' directive\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** extraneous text after 'endif' directive\n", program_name, lbuf->filename, line_no);
}
continue;
saved_ch = *q;
*q = '\0';
- if ((ret = include_makefile (p, bsd))) {
+ if ((ret = include_makefile (lbuf->filename, lbuf->line_no, p, bsd))) {
return ret;
}
if (!(colon = strchr (line, ':'))) {
- for (p = line; isspace ((int) *p); p++) {
- ;
- }
-
- if (*p) {
- fprintf (stderr, "%s: missing ':' in rule line!\n", program_name);
+ if (*(p = skip_whitespace (line))) {
+ fprintf (stderr, "%s: %s: %lu: missing ':' in rule line!\n", program_name, lbuf->filename, line_no);
}
free (line);
record_waiting_files ();
+ if (*(skip_whitespace (lbuf->start))) {
+ line_no++;
+ }
+
free (clean);
free (cmds);
}
- fprintf (stderr, "%s: *** missing 'endif'. Stop.\n", program_name);
+ fprintf (stderr, "%s: %s: %lu: *** missing 'endif'. Stop.\n", program_name, lbuf->filename, line_no);
exit (EXIT_FAILURE);
}
}
lbuf.size = 256;
+
+ lbuf.filename = filename;
+ lbuf.line_no = 1;
+
lbuf.start = xmalloc (lbuf.size);
if ((makefile_list = variable_find ("MAKEFILE_LIST"))) {