Changeset 2596 for vendor/gnumake/current/filedef.h
- Timestamp:
- Jun 20, 2012, 12:44:52 AM (13 years ago)
- Location:
- vendor/gnumake/current
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current
- Property svn:ignore deleted
-
vendor/gnumake/current/filedef.h
r1989 r2596 1 1 /* Definition of target file data structures for GNU Make. 2 2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software4 Foundation, Inc.3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 4 2010 Free Software Foundation, Inc. 5 5 This file is part of GNU Make. 6 6 … … 95 95 unsigned int considered:1; /* equal to 'considered' if file has been 96 96 considered on current scan of goal chain */ 97 unsigned int no_diag:1; /* True if the file failed to update and no 98 diagnostics has been issued (dontcare). */ 97 99 }; 98 100 99 101 100 extern struct file *default_goal_file, *suffix_file, *default_file; 101 extern char **default_goal_name; 102 extern struct file *suffix_file, *default_file; 102 103 103 104 104 105 struct file *lookup_file (const char *name); 105 106 struct file *enter_file (const char *name); 106 struct dep *parse_prereqs (char *prereqs); 107 struct dep *split_prereqs (char *prereqstr); 108 struct dep *enter_prereqs (struct dep *prereqs, const char *stem); 107 109 void remove_intermediates (int sig); 108 110 void snap_deps (void); … … 113 115 void init_hash_files (void); 114 116 char *build_target_list (char *old_list); 117 void print_prereqs (const struct dep *deps); 118 void print_file_data_base (void); 115 119 116 120 #if FILE_TIMESTAMP_HI_RES
Note:
See TracChangeset
for help on using the changeset viewer.