]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Formerly dep.h.~5~
authorRoland McGrath <roland@redhat.com>
Wed, 14 Jul 1993 22:56:42 +0000 (22:56 +0000)
committerRoland McGrath <roland@redhat.com>
Wed, 14 Jul 1993 22:56:42 +0000 (22:56 +0000)
dep.h

diff --git a/dep.h b/dep.h
index 6f05eb45117f30f9d282d369df48666083764934..aaad78944d381061d8f695369b5df38c16086e19 100644 (file)
--- a/dep.h
+++ b/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
+  };
+