Formerly dep.h.~6~

This commit is contained in:
Roland McGrath 1993-08-03 04:18:56 +00:00
parent 22cd0cd4e3
commit 92a67d1895

14
dep.h
View file

@ -58,12 +58,8 @@ extern struct dep *read_all_makefiles ();
/* Flag bits for the second argument to `read_makefile'. /* Flag bits for the second argument to `read_makefile'.
These flags are saved in the `changed' field of each These flags are saved in the `changed' field of each
`struct dep' in the chain returned by `read_all_makefiles'. */ `struct dep' in the chain returned by `read_all_makefiles'. */
enum #define RM_NO_DEFAULT_GOAL (1 << 0) /* Do not set default goal. */
{ #define RM_INCLUDED (1 << 1) /* Search makefile search path. */
RM_NO_DEFAULT_GOAL = 1 << 0, /* Do not set default goal. */ #define RM_DONTCARE (1 << 2) /* No error if it doesn't exist. */
RM_INCLUDED = 1 << 1, /* Search the makefile search path. */ #define RM_NO_TILDE (1 << 3) /* Don't expand ~ in file name. */
RM_DONTCARE = 1 << 2, /* No error if it doesn't exist. */ #define RM_NOFLAG 0
RM_NO_TILDE = 1 << 3, /* Don't expand ~ in the file name. */
RM_NOFLAG = 0
};