}
-static int include_makefile (const char *filename) {
+static int include_makefile (const char *filename, int bsd) {
char *path, *new_name;
unsigned long i;
+ if (bsd) {
+
+ char ch = *filename++, *end;
+
+ if (ch != '<' && ch != '"') {
+
+ fprintf (stderr, "%s: *** .include filename must be delimited by '\"' or '<'. Stop.\n", program_name);
+ exit (EXIT_FAILURE);
+
+ }
+
+ if (ch == '<') {
+
+ if (!(end = strrchr (filename, '>'))) {
+
+ fprintf (stderr, "%s: *** unclosed .include filename. '>' expected. Stop.\n", program_name);
+ exit (EXIT_FAILURE);
+
+ }
+
+ } else if (ch == '"') {
+
+ if (!(end = strrchr (filename, '"'))) {
+
+ fprintf (stderr, "%s: *** unclosed .include filename. '\"' expected. Stop.\n", program_name);
+ exit (EXIT_FAILURE);
+
+ }
+
+ }
+
+ *end = '\0';
+
+ }
+
if (!read_makefile (filename)) {
return 0;
}
}
fprintf (stderr, "%s: *** failed to include '%s'. Stop.\n", program_name, filename);
- return 1;
+ exit (EXIT_FAILURE);
}
}
- if (strncmp (p, "include", 7) == 0 && (isspace ((int) p[7]) || p[7] == '\0')) {
+ if (strncmp (p, ".include", 8) == 0 || strncmp (p, "include", 7) == 0) {
- p += 7;
+ int bsd = 0;
+
+ if (*p == '.') {
+
+ bsd = 1;
+ p++;
+
+ }
+
+ p = skip_whitespace (p + 7);
for (q = p + strlen (p); q > p && isspace ((int) q[-1]); q--) {
;
saved_ch = *q;
*q = '\0';
- if ((ret = include_makefile (p))) {
+ if ((ret = include_makefile (p, bsd))) {
return ret;
}