Changeset 2591 for trunk/src/kmk/filedef.h
- Timestamp:
- Jun 17, 2012, 10:45:31 PM (13 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
- Property svn:ignore
-
old new 13 13 stamp-* 14 14 makebook* 15 15 16 .*gdbinit 17 .gdb_history 18 16 19 *.dep 17 20 *.dvi … … 31 34 *.pg 32 35 *.pgs 36 33 37 README 34 38 README.DOS 35 39 README.W32 40 README.OS2 36 41 aclocal.m4 37 42 autom4te.cache … … 52 57 config.h.W32 53 58 config.h-vms 59 54 60 loadavg 55 61 loadavg.c 56 62 make 63 57 64 .deps 58 65 .dep_segment 66 ID 67 TAGS 68 59 69 _* 60 70 sun4 … … 72 82 sol2 73 83 i486-linux 84 74 85 customs 86 75 87 install-sh 76 88 mkinstalldirs 89 90 .directive.asc
-
- Property svn:ignore
-
trunk/src/kmk/filedef.h
r2001 r2591 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 … … 107 107 unsigned int considered:1; /* equal to 'considered' if file has been 108 108 considered on current scan of goal chain */ 109 unsigned int no_diag:1; /* True if the file failed to update and no 110 diagnostics has been issued (dontcare). */ 111 109 112 #ifdef CONFIG_WITH_EXPLICIT_MULTITARGET 110 113 unsigned int multi_maybe:1; /* Nonzero if this file isn't always updated … … 117 120 and the expanding done in snap_deps. */ 118 121 #endif 119 120 122 }; 121 123 122 124 123 extern struct file *default_goal_file, *suffix_file, *default_file; 124 extern char **default_goal_name; 125 extern struct file *suffix_file, *default_file; 125 126 126 127 … … 130 131 #endif 131 132 struct file *enter_file (const char *name); 132 struct dep *parse_prereqs (char *prereqs); 133 struct dep *split_prereqs (char *prereqstr); 134 struct dep *enter_prereqs (struct dep *prereqs, const char *stem); 133 135 void remove_intermediates (int sig); 134 136 void snap_deps (void); … … 139 141 void init_hash_files (void); 140 142 char *build_target_list (char *old_list); 143 void print_prereqs (const struct dep *deps); 144 void print_file_data_base (void); 141 145 142 146 #if FILE_TIMESTAMP_HI_RES
Note:
See TracChangeset
for help on using the changeset viewer.