summaryrefslogtreecommitdiff
path: root/dep.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1993-08-03 04:18:56 +0000
committerRoland McGrath <roland@redhat.com>1993-08-03 04:18:56 +0000
commit92a67d1895c4bbfb54b33ec6eb3811f4994d6eac (patch)
tree278d3ce6646d76f5af23030e2caf343075fc1768 /dep.h
parent22cd0cd4e3a240c5b12142adf3ec5496dbb47fc4 (diff)
downloadgunmake-92a67d1895c4bbfb54b33ec6eb3811f4994d6eac.tar.gz
Formerly dep.h.~6~
Diffstat (limited to 'dep.h')
-rw-r--r--dep.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/dep.h b/dep.h
index aaad789..f579b33 100644
--- a/dep.h
+++ b/dep.h
@@ -58,12 +58,8 @@ 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
- };
-
+#define RM_NO_DEFAULT_GOAL (1 << 0) /* Do not set default goal. */
+#define RM_INCLUDED (1 << 1) /* Search makefile search path. */
+#define RM_DONTCARE (1 << 2) /* No error if it doesn't exist. */
+#define RM_NO_TILDE (1 << 3) /* Don't expand ~ in file name. */
+#define RM_NOFLAG 0