mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-25 12:37:04 +00:00
Formerly dep.h.~5~
This commit is contained in:
parent
aef2a1ccd0
commit
0a0130dcf2
1 changed files with 15 additions and 0 deletions
15
dep.h
15
dep.h
|
@ -52,3 +52,18 @@ extern struct nameseq *ar_glob ();
|
|||
/* Buggy compiler can't hack this. */
|
||||
extern char *dep_name ();
|
||||
#endif
|
||||
|
||||
extern struct dep *read_all_makefiles ();
|
||||
|
||||
/* Flag bits for the second argument to `read_makefile'.
|
||||
These flags are saved in the `changed' field of each
|
||||
`struct dep' in the chain returned by `read_all_makefiles'. */
|
||||
enum
|
||||
{
|
||||
RM_NO_DEFAULT_GOAL = 1 << 0, /* Do not set default goal. */
|
||||
RM_INCLUDED = 1 << 1, /* Search the makefile search path. */
|
||||
RM_DONTCARE = 1 << 2, /* No error if it doesn't exist. */
|
||||
RM_NO_TILDE = 1 << 3, /* Don't expand ~ in the file name. */
|
||||
RM_NOFLAG = 0
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue