1 /* Command processing for GNU Make.
2 Copyright (C) 1988,89,91,92,93,94,95,96,97 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
27 extern int remote_kill
PARAMS ((int id
, int sig
));
33 /* Set FILE's automatic variables up. */
36 set_file_variables (file
)
37 register struct file
*file
;
40 char *at
, *percent
, *star
, *less
;
43 /* If the target is an archive member `lib(member)',
44 then $@ is `lib' and $% is `member'. */
46 if (ar_name (file
->name
))
49 p
= strchr (file
->name
, '(');
50 at
= (char *) alloca (p
- file
->name
+ 1);
51 bcopy (file
->name
, at
, p
- file
->name
);
52 at
[p
- file
->name
] = '\0';
54 percent
= (char *) alloca (len
);
55 bcopy (p
+ 1, percent
, len
- 1);
56 percent
[len
- 1] = '\0';
59 #endif /* NO_ARCHIVES. */
65 /* $* is the stem from an implicit or static pattern rule. */
68 /* In Unix make, $* is set to the target name with
69 any suffix in the .SUFFIXES list stripped off for
70 explicit rules. We store this in the `stem' member. */
71 register struct dep
*d
;
76 if (ar_name (file
->name
))
78 name
= strchr (file
->name
, '(') + 1;
79 len
= strlen (name
) - 1;
88 for (d
= enter_file (".SUFFIXES")->deps
; d
!= 0; d
= d
->next
)
90 unsigned int slen
= strlen (dep_name (d
));
91 if (len
> slen
&& strneq (dep_name (d
), name
+ (len
- slen
), slen
))
93 file
->stem
= savestring (name
, len
- slen
);
102 /* $< is the first dependency. */
103 less
= file
->deps
!= 0 ? dep_name (file
->deps
) : "";
105 if (file
->cmds
== default_file
->cmds
)
106 /* This file got its commands from .DEFAULT.
107 In this case $< is the same as $@. */
110 #define DEFINE_VARIABLE(name, len, value) \
111 (void) define_variable_for_file (name,len,value,o_automatic,0,file)
113 /* Define the variables. */
115 DEFINE_VARIABLE ("<", 1, less
);
116 DEFINE_VARIABLE ("*", 1, star
);
117 DEFINE_VARIABLE ("@", 1, at
);
118 DEFINE_VARIABLE ("%", 1, percent
);
120 /* Compute the values for $^, $+, and $?. */
123 register unsigned int qmark_len
, plus_len
;
124 char *caret_value
, *plus_value
;
128 register struct dep
*d
;
131 /* Compute first the value for $+, which is supposed to contain
132 duplicate dependencies as they were listed in the makefile. */
135 for (d
= file
->deps
; d
!= 0; d
= d
->next
)
136 plus_len
+= strlen (dep_name (d
)) + 1;
138 len
= plus_len
== 0 ? 1 : plus_len
;
139 cp
= plus_value
= (char *) alloca (len
);
141 qmark_len
= plus_len
; /* Will be this or less. */
142 for (d
= file
->deps
; d
!= 0; d
= d
->next
)
144 char *c
= dep_name (d
);
149 c
= strchr (c
, '(') + 1;
150 len
= strlen (c
) - 1;
164 qmark_len
-= len
+ 1; /* Don't space in $? for this one. */
167 /* Kill the last space and define the variable. */
169 cp
[cp
> plus_value
? -1 : 0] = '\0';
170 DEFINE_VARIABLE ("+", 1, plus_value
);
172 /* Make sure that no dependencies are repeated. This does not
173 really matter for the purpose of updating targets, but it
174 might make some names be listed twice for $^ and $?. */
176 uniquize_deps (file
->deps
);
178 /* Compute the values for $^ and $?. */
180 cp
= caret_value
= plus_value
; /* Reuse the buffer; it's big enough. */
181 len
= qmark_len
== 0 ? 1 : qmark_len
;
182 qp
= qmark_value
= (char *) alloca (len
);
184 for (d
= file
->deps
; d
!= 0; d
= d
->next
)
186 char *c
= dep_name (d
);
191 c
= strchr (c
, '(') + 1;
192 len
= strlen (c
) - 1;
217 /* Kill the last spaces and define the variables. */
219 cp
[cp
> caret_value
? -1 : 0] = '\0';
220 DEFINE_VARIABLE ("^", 1, caret_value
);
222 qp
[qp
> qmark_value
? -1 : 0] = '\0';
223 DEFINE_VARIABLE ("?", 1, qmark_value
);
226 #undef DEFINE_VARIABLE
229 /* Chop CMDS up into individual command lines if necessary.
230 Also set the `lines_flag' and `any_recurse' members. */
234 register struct commands
*cmds
;
237 unsigned int nlines
, idx
;
240 /* If we don't have any commands,
241 or we already parsed them, never mind. */
243 if (!cmds
|| cmds
->command_lines
!= 0)
246 /* Chop CMDS->commands up into lines in CMDS->command_lines.
247 Also set the corresponding CMDS->lines_flags elements,
248 and the CMDS->any_recurse flag. */
251 lines
= (char **) xmalloc (5 * sizeof (char *));
258 end
= strchr (end
, '\n');
260 end
= p
+ strlen (p
);
261 else if (end
> p
&& end
[-1] == '\\')
265 for (b
= end
- 2; b
>= p
&& *b
== '\\'; --b
)
266 backslash
= !backslash
;
277 lines
= (char **) xrealloc ((char *) lines
,
278 nlines
* sizeof (char *));
280 lines
[idx
++] = savestring (p
, end
- p
);
289 lines
= (char **) xrealloc ((char *) lines
,
290 nlines
* sizeof (char *));
293 cmds
->ncommand_lines
= nlines
;
294 cmds
->command_lines
= lines
;
296 cmds
->any_recurse
= 0;
297 cmds
->lines_flags
= (char *) xmalloc (nlines
);
298 for (idx
= 0; idx
< nlines
; ++idx
)
303 isblank ((unsigned char)*p
) || *p
== '-' || *p
== '@' || *p
== '+';
308 flags
|= COMMANDS_RECURSE
;
311 flags
|= COMMANDS_SILENT
;
314 flags
|= COMMANDS_NOERROR
;
317 if (!(flags
& COMMANDS_RECURSE
))
319 unsigned int len
= strlen (p
);
320 if (sindex (p
, len
, "$(MAKE)", 7) != 0
321 || sindex (p
, len
, "${MAKE}", 7) != 0)
322 flags
|= COMMANDS_RECURSE
;
325 cmds
->lines_flags
[idx
] = flags
;
326 cmds
->any_recurse
|= flags
& COMMANDS_RECURSE
;
330 /* Execute the commands to remake FILE. If they are currently executing,
331 return or have already finished executing, just return. Otherwise,
332 fork off a child process to run the first command line in the sequence. */
335 execute_file_commands (file
)
340 /* Don't go through all the preparations if
341 the commands are nothing but whitespace. */
343 for (p
= file
->cmds
->commands
; *p
!= '\0'; ++p
)
344 if (!isspace ((unsigned char)*p
) && *p
!= '-' && *p
!= '@')
348 /* If there are no commands, assume everything worked. */
349 set_command_state (file
, cs_running
);
350 file
->update_status
= 0;
351 notice_finished_file (file
);
355 /* First set the automatic variables according to this file. */
357 initialize_file_variables (file
, 0);
359 set_file_variables (file
);
361 /* Start the commands running. */
365 /* This is set while we are inside fatal_error_signal,
366 so things can avoid nonreentrant operations. */
368 int handling_fatal_signal
= 0;
370 /* Handle fatal signals. */
373 fatal_error_signal (sig
)
377 extern int dos_status
, dos_command_running
;
379 if (dos_command_running
)
381 /* That was the child who got the signal, not us. */
382 dos_status
|= (sig
<< 8);
385 remove_intermediates (1);
387 #else /* not __MSDOS__ */
389 remove_intermediates (1);
391 fputs (_("*** Break.\n"), stderr
);
394 #else /* not Amiga */
395 handling_fatal_signal
= 1;
397 /* Set the handling for this signal to the default.
398 It is blocked now while we run this handler. */
399 signal (sig
, SIG_DFL
);
401 /* A termination signal won't be sent to the entire
402 process group, but it means we want to kill the children. */
406 register struct child
*c
;
407 for (c
= children
; c
!= 0; c
= c
->next
)
409 (void) kill (c
->pid
, SIGTERM
);
412 /* If we got a signal that means the user
413 wanted to kill make, remove pending targets. */
415 if (sig
== SIGTERM
|| sig
== SIGINT
424 register struct child
*c
;
426 /* Remote children won't automatically get signals sent
427 to the process group, so we must send them. */
428 for (c
= children
; c
!= 0; c
= c
->next
)
430 (void) remote_kill (c
->pid
, sig
);
432 for (c
= children
; c
!= 0; c
= c
->next
)
433 delete_child_targets (c
);
435 /* Clean up the children. We don't just use the call below because
436 we don't want to print the "Waiting for children" message. */
437 while (job_slots_used
> 0)
438 reap_children (1, 0);
441 /* Wait for our children to die. */
442 while (job_slots_used
> 0)
443 reap_children (1, 1);
445 /* Delete any non-precious intermediate files that were made. */
447 remove_intermediates (1);
451 /* We don't want to send ourselves SIGQUIT, because it will
452 cause a core dump. Just exit instead. */
456 /* Signal the same code; this time it will really be fatal. The signal
457 will be unblocked when we return and arrive then to kill us. */
458 if (kill (getpid (), sig
) < 0)
459 pfatal_with_name ("kill");
460 #endif /* not Amiga */
461 #endif /* not __MSDOS__ */
464 /* Delete FILE unless it's precious or not actually a file (phony),
465 and it has changed on disk since we last stat'd it. */
468 delete_target (file
, on_behalf_of
)
474 if (file
->precious
|| file
->phony
)
478 if (ar_name (file
->name
))
480 if (ar_member_date (file
->name
) != FILE_TIMESTAMP_S (file
->last_mtime
))
483 error (NILF
, _("*** [%s] Archive member `%s' may be bogus; not deleted"),
484 on_behalf_of
, file
->name
);
486 error (NILF
, _("*** Archive member `%s' may be bogus; not deleted"),
493 if (stat (file
->name
, &st
) == 0
494 && S_ISREG (st
.st_mode
)
495 && FILE_TIMESTAMP_STAT_MODTIME (st
) != file
->last_mtime
)
498 error (NILF
, _("*** [%s] Deleting file `%s'"), on_behalf_of
, file
->name
);
500 error (NILF
, _("*** Deleting file `%s'"), file
->name
);
501 if (unlink (file
->name
) < 0
502 && errno
!= ENOENT
) /* It disappeared; so what. */
503 perror_with_name ("unlink: ", file
->name
);
508 /* Delete all non-precious targets of CHILD unless they were already deleted.
509 Set the flag in CHILD to say they've been deleted. */
512 delete_child_targets (child
)
520 /* Delete the target file if it changed. */
521 delete_target (child
->file
, (char *) 0);
523 /* Also remove any non-precious targets listed in the `also_make' member. */
524 for (d
= child
->file
->also_make
; d
!= 0; d
= d
->next
)
525 delete_target (d
->file
, child
->file
->name
);
530 /* Print out the commands in CMDS. */
533 print_commands (cmds
)
534 register struct commands
*cmds
;
538 fputs (_("# commands to execute"), stdout
);
540 if (cmds
->fileinfo
.filenm
== 0)
541 puts (_(" (built-in):"));
543 printf (_(" (from `%s', line %lu):\n"),
544 cmds
->fileinfo
.filenm
, cmds
->fileinfo
.lineno
);
551 while (isspace ((unsigned char)*s
))
554 end
= strchr (s
, '\n');
556 end
= s
+ strlen (s
);
558 printf ("\t%.*s\n", (int) (end
- s
), s
);