1 | /* Target file management for GNU Make.
|
---|
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 Software
|
---|
4 | Foundation, Inc.
|
---|
5 | This file is part of GNU Make.
|
---|
6 |
|
---|
7 | GNU Make is free software; you can redistribute it and/or modify it under the
|
---|
8 | terms of the GNU General Public License as published by the Free Software
|
---|
9 | Foundation; either version 3 of the License, or (at your option) any later
|
---|
10 | version.
|
---|
11 |
|
---|
12 | GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
---|
13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
---|
14 | A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License along with
|
---|
17 | this program. If not, see <http://www.gnu.org/licenses/>. */
|
---|
18 |
|
---|
19 | #include "make.h"
|
---|
20 |
|
---|
21 | #include <assert.h>
|
---|
22 |
|
---|
23 | #include "dep.h"
|
---|
24 | #include "filedef.h"
|
---|
25 | #include "job.h"
|
---|
26 | #include "commands.h"
|
---|
27 | #include "variable.h"
|
---|
28 | #include "debug.h"
|
---|
29 | #include "hash.h"
|
---|
30 |
|
---|
31 |
|
---|
32 | /* Remember whether snap_deps has been invoked: we need this to be sure we
|
---|
33 | don't add new rules (via $(eval ...)) afterwards. In the future it would
|
---|
34 | be nice to support this, but it means we'd need to re-run snap_deps() or
|
---|
35 | at least its functionality... it might mean changing snap_deps() to be run
|
---|
36 | per-file, so we can invoke it after the eval... or remembering which files
|
---|
37 | in the hash have been snapped (a new boolean flag?) and having snap_deps()
|
---|
38 | only work on files which have not yet been snapped. */
|
---|
39 | int snapped_deps = 0;
|
---|
40 |
|
---|
41 | /* Hash table of files the makefile knows how to make. */
|
---|
42 |
|
---|
43 | static unsigned long
|
---|
44 | file_hash_1 (const void *key)
|
---|
45 | {
|
---|
46 | return_ISTRING_HASH_1 (((struct file const *) key)->hname);
|
---|
47 | }
|
---|
48 |
|
---|
49 | static unsigned long
|
---|
50 | file_hash_2 (const void *key)
|
---|
51 | {
|
---|
52 | return_ISTRING_HASH_2 (((struct file const *) key)->hname);
|
---|
53 | }
|
---|
54 |
|
---|
55 | static int
|
---|
56 | file_hash_cmp (const void *x, const void *y)
|
---|
57 | {
|
---|
58 | return_ISTRING_COMPARE (((struct file const *) x)->hname,
|
---|
59 | ((struct file const *) y)->hname);
|
---|
60 | }
|
---|
61 |
|
---|
62 | #ifndef FILE_BUCKETS
|
---|
63 | #define FILE_BUCKETS 1007
|
---|
64 | #endif
|
---|
65 | static struct hash_table files;
|
---|
66 |
|
---|
67 | /* Whether or not .SECONDARY with no prerequisites was given. */
|
---|
68 | static int all_secondary = 0;
|
---|
69 |
|
---|
70 | /* Access the hash table of all file records.
|
---|
71 | lookup_file given a name, return the struct file * for that name,
|
---|
72 | or nil if there is none.
|
---|
73 | */
|
---|
74 |
|
---|
75 | struct file *
|
---|
76 | lookup_file (const char *name)
|
---|
77 | {
|
---|
78 | struct file *f;
|
---|
79 | struct file file_key;
|
---|
80 | #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
|
---|
81 | char *lname;
|
---|
82 | #endif
|
---|
83 |
|
---|
84 | assert (*name != '\0');
|
---|
85 |
|
---|
86 | /* This is also done in parse_file_seq, so this is redundant
|
---|
87 | for names read from makefiles. It is here for names passed
|
---|
88 | on the command line. */
|
---|
89 | #ifdef VMS
|
---|
90 | # ifndef WANT_CASE_SENSITIVE_TARGETS
|
---|
91 | if (*name != '.')
|
---|
92 | {
|
---|
93 | const char *n;
|
---|
94 | char *ln;
|
---|
95 | lname = xstrdup (name);
|
---|
96 | for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
|
---|
97 | *ln = isupper ((unsigned char)*n) ? tolower ((unsigned char)*n) : *n;
|
---|
98 | *ln = '\0';
|
---|
99 | name = lname;
|
---|
100 | }
|
---|
101 | # endif
|
---|
102 |
|
---|
103 | while (name[0] == '[' && name[1] == ']' && name[2] != '\0')
|
---|
104 | name += 2;
|
---|
105 | #endif
|
---|
106 | while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
|
---|
107 | {
|
---|
108 | name += 2;
|
---|
109 | while (*name == '/')
|
---|
110 | /* Skip following slashes: ".//foo" is "foo", not "/foo". */
|
---|
111 | ++name;
|
---|
112 | }
|
---|
113 |
|
---|
114 | if (*name == '\0')
|
---|
115 | /* It was all slashes after a dot. */
|
---|
116 | #if defined(VMS)
|
---|
117 | name = "[]";
|
---|
118 | #elif defined(_AMIGA)
|
---|
119 | name = "";
|
---|
120 | #else
|
---|
121 | name = "./";
|
---|
122 | #endif
|
---|
123 |
|
---|
124 | file_key.hname = name;
|
---|
125 | f = hash_find_item (&files, &file_key);
|
---|
126 | #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
|
---|
127 | if (*name != '.')
|
---|
128 | free (lname);
|
---|
129 | #endif
|
---|
130 |
|
---|
131 | return f;
|
---|
132 | }
|
---|
133 |
|
---|
134 | /* Look up a file record for file NAME and return it.
|
---|
135 | Create a new record if one doesn't exist. NAME will be stored in the
|
---|
136 | new record so it should be constant or in the strcache etc.
|
---|
137 | */
|
---|
138 |
|
---|
139 | struct file *
|
---|
140 | enter_file (const char *name)
|
---|
141 | {
|
---|
142 | struct file *f;
|
---|
143 | struct file *new;
|
---|
144 | struct file **file_slot;
|
---|
145 | struct file file_key;
|
---|
146 |
|
---|
147 | assert (*name != '\0');
|
---|
148 | assert (strcache_iscached (name));
|
---|
149 |
|
---|
150 | #if defined(VMS) && !defined(WANT_CASE_SENSITIVE_TARGETS)
|
---|
151 | if (*name != '.')
|
---|
152 | {
|
---|
153 | const char *n;
|
---|
154 | char *lname, *ln;
|
---|
155 | lname = xstrdup (name);
|
---|
156 | for (n = name, ln = lname; *n != '\0'; ++n, ++ln)
|
---|
157 | if (isupper ((unsigned char)*n))
|
---|
158 | *ln = tolower ((unsigned char)*n);
|
---|
159 | else
|
---|
160 | *ln = *n;
|
---|
161 |
|
---|
162 | *ln = '\0';
|
---|
163 | name = strcache_add (lname);
|
---|
164 | free (lname);
|
---|
165 | }
|
---|
166 | #endif
|
---|
167 |
|
---|
168 | file_key.hname = name;
|
---|
169 | file_slot = (struct file **) hash_find_slot (&files, &file_key);
|
---|
170 | f = *file_slot;
|
---|
171 | if (! HASH_VACANT (f) && !f->double_colon)
|
---|
172 | return f;
|
---|
173 |
|
---|
174 | new = xmalloc (sizeof (struct file));
|
---|
175 | memset (new, '\0', sizeof (struct file));
|
---|
176 | new->name = new->hname = name;
|
---|
177 | new->update_status = -1;
|
---|
178 |
|
---|
179 | if (HASH_VACANT (f))
|
---|
180 | {
|
---|
181 | new->last = new;
|
---|
182 | hash_insert_at (&files, new, file_slot);
|
---|
183 | }
|
---|
184 | else
|
---|
185 | {
|
---|
186 | /* There is already a double-colon entry for this file. */
|
---|
187 | new->double_colon = f;
|
---|
188 | f->last->prev = new;
|
---|
189 | f->last = new;
|
---|
190 | }
|
---|
191 |
|
---|
192 | return new;
|
---|
193 | }
|
---|
194 | |
---|
195 |
|
---|
196 | /* Rehash FILE to NAME. This is not as simple as resetting
|
---|
197 | the `hname' member, since it must be put in a new hash bucket,
|
---|
198 | and possibly merged with an existing file called NAME. */
|
---|
199 |
|
---|
200 | void
|
---|
201 | rehash_file (struct file *from_file, const char *to_hname)
|
---|
202 | {
|
---|
203 | struct file file_key;
|
---|
204 | struct file **file_slot;
|
---|
205 | struct file *to_file;
|
---|
206 | struct file *deleted_file;
|
---|
207 | struct file *f;
|
---|
208 |
|
---|
209 | /* If it's already that name, we're done. */
|
---|
210 | file_key.hname = to_hname;
|
---|
211 | if (! file_hash_cmp (from_file, &file_key))
|
---|
212 | return;
|
---|
213 |
|
---|
214 | /* Find the end of the renamed list for the "from" file. */
|
---|
215 | file_key.hname = from_file->hname;
|
---|
216 | while (from_file->renamed != 0)
|
---|
217 | from_file = from_file->renamed;
|
---|
218 | if (file_hash_cmp (from_file, &file_key))
|
---|
219 | /* hname changed unexpectedly!! */
|
---|
220 | abort ();
|
---|
221 |
|
---|
222 | /* Remove the "from" file from the hash. */
|
---|
223 | deleted_file = hash_delete (&files, from_file);
|
---|
224 | if (deleted_file != from_file)
|
---|
225 | /* from_file isn't the one stored in files */
|
---|
226 | abort ();
|
---|
227 |
|
---|
228 | /* Find where the newly renamed file will go in the hash. */
|
---|
229 | file_key.hname = to_hname;
|
---|
230 | file_slot = (struct file **) hash_find_slot (&files, &file_key);
|
---|
231 | to_file = *file_slot;
|
---|
232 |
|
---|
233 | /* Change the hash name for this file. */
|
---|
234 | from_file->hname = to_hname;
|
---|
235 | for (f = from_file->double_colon; f != 0; f = f->prev)
|
---|
236 | f->hname = to_hname;
|
---|
237 |
|
---|
238 | /* If the new name doesn't exist yet just set it to the renamed file. */
|
---|
239 | if (HASH_VACANT (to_file))
|
---|
240 | {
|
---|
241 | hash_insert_at (&files, from_file, file_slot);
|
---|
242 | return;
|
---|
243 | }
|
---|
244 |
|
---|
245 | /* TO_FILE already exists under TO_HNAME.
|
---|
246 | We must retain TO_FILE and merge FROM_FILE into it. */
|
---|
247 |
|
---|
248 | if (from_file->cmds != 0)
|
---|
249 | {
|
---|
250 | if (to_file->cmds == 0)
|
---|
251 | to_file->cmds = from_file->cmds;
|
---|
252 | else if (from_file->cmds != to_file->cmds)
|
---|
253 | {
|
---|
254 | /* We have two sets of commands. We will go with the
|
---|
255 | one given in the rule explicitly mentioning this name,
|
---|
256 | but give a message to let the user know what's going on. */
|
---|
257 | if (to_file->cmds->fileinfo.filenm != 0)
|
---|
258 | error (&from_file->cmds->fileinfo,
|
---|
259 | _("Recipe was specified for file `%s' at %s:%lu,"),
|
---|
260 | from_file->name, to_file->cmds->fileinfo.filenm,
|
---|
261 | to_file->cmds->fileinfo.lineno);
|
---|
262 | else
|
---|
263 | error (&from_file->cmds->fileinfo,
|
---|
264 | _("Recipe for file `%s' was found by implicit rule search,"),
|
---|
265 | from_file->name);
|
---|
266 | error (&from_file->cmds->fileinfo,
|
---|
267 | _("but `%s' is now considered the same file as `%s'."),
|
---|
268 | from_file->name, to_hname);
|
---|
269 | error (&from_file->cmds->fileinfo,
|
---|
270 | _("Recipe for `%s' will be ignored in favor of the one for `%s'."),
|
---|
271 | to_hname, from_file->name);
|
---|
272 | }
|
---|
273 | }
|
---|
274 |
|
---|
275 | /* Merge the dependencies of the two files. */
|
---|
276 |
|
---|
277 | if (to_file->deps == 0)
|
---|
278 | to_file->deps = from_file->deps;
|
---|
279 | else
|
---|
280 | {
|
---|
281 | struct dep *deps = to_file->deps;
|
---|
282 | while (deps->next != 0)
|
---|
283 | deps = deps->next;
|
---|
284 | deps->next = from_file->deps;
|
---|
285 | }
|
---|
286 |
|
---|
287 | merge_variable_set_lists (&to_file->variables, from_file->variables);
|
---|
288 |
|
---|
289 | if (to_file->double_colon && from_file->is_target && !from_file->double_colon)
|
---|
290 | fatal (NILF, _("can't rename single-colon `%s' to double-colon `%s'"),
|
---|
291 | from_file->name, to_hname);
|
---|
292 | if (!to_file->double_colon && from_file->double_colon)
|
---|
293 | {
|
---|
294 | if (to_file->is_target)
|
---|
295 | fatal (NILF, _("can't rename double-colon `%s' to single-colon `%s'"),
|
---|
296 | from_file->name, to_hname);
|
---|
297 | else
|
---|
298 | to_file->double_colon = from_file->double_colon;
|
---|
299 | }
|
---|
300 |
|
---|
301 | if (from_file->last_mtime > to_file->last_mtime)
|
---|
302 | /* %%% Kludge so -W wins on a file that gets vpathized. */
|
---|
303 | to_file->last_mtime = from_file->last_mtime;
|
---|
304 |
|
---|
305 | to_file->mtime_before_update = from_file->mtime_before_update;
|
---|
306 |
|
---|
307 | #define MERGE(field) to_file->field |= from_file->field
|
---|
308 | MERGE (precious);
|
---|
309 | MERGE (tried_implicit);
|
---|
310 | MERGE (updating);
|
---|
311 | MERGE (updated);
|
---|
312 | MERGE (is_target);
|
---|
313 | MERGE (cmd_target);
|
---|
314 | MERGE (phony);
|
---|
315 | MERGE (ignore_vpath);
|
---|
316 | #undef MERGE
|
---|
317 |
|
---|
318 | from_file->renamed = to_file;
|
---|
319 | }
|
---|
320 |
|
---|
321 | /* Rename FILE to NAME. This is not as simple as resetting
|
---|
322 | the `name' member, since it must be put in a new hash bucket,
|
---|
323 | and possibly merged with an existing file called NAME. */
|
---|
324 |
|
---|
325 | void
|
---|
326 | rename_file (struct file *from_file, const char *to_hname)
|
---|
327 | {
|
---|
328 | rehash_file (from_file, to_hname);
|
---|
329 | while (from_file)
|
---|
330 | {
|
---|
331 | from_file->name = from_file->hname;
|
---|
332 | from_file = from_file->prev;
|
---|
333 | }
|
---|
334 | }
|
---|
335 | |
---|
336 |
|
---|
337 | /* Remove all nonprecious intermediate files.
|
---|
338 | If SIG is nonzero, this was caused by a fatal signal,
|
---|
339 | meaning that a different message will be printed, and
|
---|
340 | the message will go to stderr rather than stdout. */
|
---|
341 |
|
---|
342 | void
|
---|
343 | remove_intermediates (int sig)
|
---|
344 | {
|
---|
345 | struct file **file_slot;
|
---|
346 | struct file **file_end;
|
---|
347 | int doneany = 0;
|
---|
348 |
|
---|
349 | /* If there's no way we will ever remove anything anyway, punt early. */
|
---|
350 | if (question_flag || touch_flag || all_secondary)
|
---|
351 | return;
|
---|
352 |
|
---|
353 | if (sig && just_print_flag)
|
---|
354 | return;
|
---|
355 |
|
---|
356 | file_slot = (struct file **) files.ht_vec;
|
---|
357 | file_end = file_slot + files.ht_size;
|
---|
358 | for ( ; file_slot < file_end; file_slot++)
|
---|
359 | if (! HASH_VACANT (*file_slot))
|
---|
360 | {
|
---|
361 | struct file *f = *file_slot;
|
---|
362 | /* Is this file eligible for automatic deletion?
|
---|
363 | Yes, IFF: it's marked intermediate, it's not secondary, it wasn't
|
---|
364 | given on the command line, and it's either a -include makefile or
|
---|
365 | it's not precious. */
|
---|
366 | if (f->intermediate && (f->dontcare || !f->precious)
|
---|
367 | && !f->secondary && !f->cmd_target)
|
---|
368 | {
|
---|
369 | int status;
|
---|
370 | if (f->update_status == -1)
|
---|
371 | /* If nothing would have created this file yet,
|
---|
372 | don't print an "rm" command for it. */
|
---|
373 | continue;
|
---|
374 | if (just_print_flag)
|
---|
375 | status = 0;
|
---|
376 | else
|
---|
377 | {
|
---|
378 | status = unlink (f->name);
|
---|
379 | if (status < 0 && errno == ENOENT)
|
---|
380 | continue;
|
---|
381 | }
|
---|
382 | if (!f->dontcare)
|
---|
383 | {
|
---|
384 | if (sig)
|
---|
385 | error (NILF, _("*** Deleting intermediate file `%s'"), f->name);
|
---|
386 | else
|
---|
387 | {
|
---|
388 | if (! doneany)
|
---|
389 | DB (DB_BASIC, (_("Removing intermediate files...\n")));
|
---|
390 | if (!silent_flag)
|
---|
391 | {
|
---|
392 | if (! doneany)
|
---|
393 | {
|
---|
394 | fputs ("rm ", stdout);
|
---|
395 | doneany = 1;
|
---|
396 | }
|
---|
397 | else
|
---|
398 | putchar (' ');
|
---|
399 | fputs (f->name, stdout);
|
---|
400 | fflush (stdout);
|
---|
401 | }
|
---|
402 | }
|
---|
403 | if (status < 0)
|
---|
404 | perror_with_name ("unlink: ", f->name);
|
---|
405 | }
|
---|
406 | }
|
---|
407 | }
|
---|
408 |
|
---|
409 | if (doneany && !sig)
|
---|
410 | {
|
---|
411 | putchar ('\n');
|
---|
412 | fflush (stdout);
|
---|
413 | }
|
---|
414 | }
|
---|
415 | |
---|
416 |
|
---|
417 | struct dep *
|
---|
418 | parse_prereqs (char *p)
|
---|
419 | {
|
---|
420 | struct dep *new = (struct dep *)
|
---|
421 | multi_glob (parse_file_seq (&p, '|', sizeof (struct dep), 1),
|
---|
422 | sizeof (struct dep));
|
---|
423 |
|
---|
424 | if (*p)
|
---|
425 | {
|
---|
426 | /* Files that follow '|' are "order-only" prerequisites that satisfy the
|
---|
427 | dependency by existing: their modification times are irrelevant. */
|
---|
428 | struct dep *ood;
|
---|
429 |
|
---|
430 | ++p;
|
---|
431 | ood = (struct dep *)
|
---|
432 | multi_glob (parse_file_seq (&p, '\0', sizeof (struct dep), 1),
|
---|
433 | sizeof (struct dep));
|
---|
434 |
|
---|
435 | if (! new)
|
---|
436 | new = ood;
|
---|
437 | else
|
---|
438 | {
|
---|
439 | struct dep *dp;
|
---|
440 | for (dp = new; dp->next != NULL; dp = dp->next)
|
---|
441 | ;
|
---|
442 | dp->next = ood;
|
---|
443 | }
|
---|
444 |
|
---|
445 | for (; ood != NULL; ood = ood->next)
|
---|
446 | ood->ignore_mtime = 1;
|
---|
447 | }
|
---|
448 |
|
---|
449 | return new;
|
---|
450 | }
|
---|
451 |
|
---|
452 | /* Set the intermediate flag. */
|
---|
453 |
|
---|
454 | static void
|
---|
455 | set_intermediate (const void *item)
|
---|
456 | {
|
---|
457 | struct file *f = (struct file *) item;
|
---|
458 | f->intermediate = 1;
|
---|
459 | }
|
---|
460 |
|
---|
461 | /* Expand and parse each dependency line. */
|
---|
462 | static void
|
---|
463 | expand_deps (struct file *f)
|
---|
464 | {
|
---|
465 | struct dep *d;
|
---|
466 | struct dep *old = f->deps;
|
---|
467 | const char *file_stem = f->stem;
|
---|
468 | unsigned int last_dep_has_cmds = f->updating;
|
---|
469 | int initialized = 0;
|
---|
470 |
|
---|
471 | f->updating = 0;
|
---|
472 | f->deps = 0;
|
---|
473 |
|
---|
474 | for (d = old; d != 0; d = d->next)
|
---|
475 | {
|
---|
476 | struct dep *new, *d1;
|
---|
477 | char *p;
|
---|
478 |
|
---|
479 | if (! d->name)
|
---|
480 | continue;
|
---|
481 |
|
---|
482 | /* Create the dependency list.
|
---|
483 | If we're not doing 2nd expansion, then it's just the name. We will
|
---|
484 | still need to massage it though. */
|
---|
485 | if (! d->need_2nd_expansion)
|
---|
486 | {
|
---|
487 | p = variable_expand ("");
|
---|
488 | variable_buffer_output (p, d->name, strlen (d->name) + 1);
|
---|
489 | p = variable_buffer;
|
---|
490 | }
|
---|
491 | else
|
---|
492 | {
|
---|
493 | /* If it's from a static pattern rule, convert the patterns into
|
---|
494 | "$*" so they'll expand properly. */
|
---|
495 | if (d->staticpattern)
|
---|
496 | {
|
---|
497 | char *o;
|
---|
498 | char *buffer = variable_expand ("");
|
---|
499 |
|
---|
500 | o = subst_expand (buffer, d->name, "%", "$*", 1, 2, 0);
|
---|
501 |
|
---|
502 | d->name = strcache_add_len (variable_buffer,
|
---|
503 | o - variable_buffer);
|
---|
504 | d->staticpattern = 0; /* Clear staticpattern so that we don't
|
---|
505 | re-expand %s below. */
|
---|
506 | }
|
---|
507 |
|
---|
508 | /* We are going to do second expansion so initialize file variables
|
---|
509 | for the file. Since the stem for static pattern rules comes from
|
---|
510 | individual dep lines, we will temporarily set f->stem to d->stem.
|
---|
511 | */
|
---|
512 | if (!initialized)
|
---|
513 | {
|
---|
514 | initialize_file_variables (f, 0);
|
---|
515 | initialized = 1;
|
---|
516 | }
|
---|
517 |
|
---|
518 | if (d->stem != 0)
|
---|
519 | f->stem = d->stem;
|
---|
520 |
|
---|
521 | set_file_variables (f);
|
---|
522 |
|
---|
523 | p = variable_expand_for_file (d->name, f);
|
---|
524 |
|
---|
525 | if (d->stem != 0)
|
---|
526 | f->stem = file_stem;
|
---|
527 | }
|
---|
528 |
|
---|
529 | /* Parse the prerequisites. */
|
---|
530 | new = parse_prereqs (p);
|
---|
531 |
|
---|
532 | /* If this dep list was from a static pattern rule, expand the %s. We
|
---|
533 | use patsubst_expand to translate the prerequisites' patterns into
|
---|
534 | plain prerequisite names. */
|
---|
535 | if (new && d->staticpattern)
|
---|
536 | {
|
---|
537 | const char *pattern = "%";
|
---|
538 | char *buffer = variable_expand ("");
|
---|
539 | struct dep *dp = new, *dl = 0;
|
---|
540 |
|
---|
541 | while (dp != 0)
|
---|
542 | {
|
---|
543 | char *percent;
|
---|
544 | int nl = strlen (dp->name) + 1;
|
---|
545 | char *nm = alloca (nl);
|
---|
546 | memcpy (nm, dp->name, nl);
|
---|
547 | percent = find_percent (nm);
|
---|
548 | if (percent)
|
---|
549 | {
|
---|
550 | char *o;
|
---|
551 |
|
---|
552 | /* We have to handle empty stems specially, because that
|
---|
553 | would be equivalent to $(patsubst %,dp->name,) which
|
---|
554 | will always be empty. */
|
---|
555 | if (d->stem[0] == '\0')
|
---|
556 | {
|
---|
557 | memmove (percent, percent+1, strlen (percent));
|
---|
558 | o = variable_buffer_output (buffer, nm, strlen (nm) + 1);
|
---|
559 | }
|
---|
560 | else
|
---|
561 | o = patsubst_expand_pat (buffer, d->stem, pattern, nm,
|
---|
562 | pattern+1, percent+1);
|
---|
563 |
|
---|
564 | /* If the name expanded to the empty string, ignore it. */
|
---|
565 | if (buffer[0] == '\0')
|
---|
566 | {
|
---|
567 | struct dep *df = dp;
|
---|
568 | if (dp == new)
|
---|
569 | dp = new = new->next;
|
---|
570 | else
|
---|
571 | dp = dl->next = dp->next;
|
---|
572 | free_dep (df);
|
---|
573 | continue;
|
---|
574 | }
|
---|
575 |
|
---|
576 | /* Save the name. */
|
---|
577 | dp->name = strcache_add_len (buffer, o - buffer);
|
---|
578 | }
|
---|
579 | dl = dp;
|
---|
580 | dp = dp->next;
|
---|
581 | }
|
---|
582 | }
|
---|
583 |
|
---|
584 | /* Enter them as files. */
|
---|
585 | for (d1 = new; d1 != 0; d1 = d1->next)
|
---|
586 | {
|
---|
587 | d1->file = lookup_file (d1->name);
|
---|
588 | if (d1->file == 0)
|
---|
589 | d1->file = enter_file (d1->name);
|
---|
590 | d1->name = 0;
|
---|
591 | d1->staticpattern = 0;
|
---|
592 | d1->need_2nd_expansion = 0;
|
---|
593 | }
|
---|
594 |
|
---|
595 | /* Add newly parsed deps to f->deps. If this is the last dependency
|
---|
596 | line and this target has commands then put it in front so the
|
---|
597 | last dependency line (the one with commands) ends up being the
|
---|
598 | first. This is important because people expect $< to hold first
|
---|
599 | prerequisite from the rule with commands. If it is not the last
|
---|
600 | dependency line or the rule does not have commands then link it
|
---|
601 | at the end so it appears in makefile order. */
|
---|
602 |
|
---|
603 | if (new != 0)
|
---|
604 | {
|
---|
605 | if (d->next == 0 && last_dep_has_cmds)
|
---|
606 | {
|
---|
607 | struct dep **d_ptr;
|
---|
608 | for (d_ptr = &new; *d_ptr; d_ptr = &(*d_ptr)->next)
|
---|
609 | ;
|
---|
610 |
|
---|
611 | *d_ptr = f->deps;
|
---|
612 | f->deps = new;
|
---|
613 | }
|
---|
614 | else
|
---|
615 | {
|
---|
616 | struct dep **d_ptr;
|
---|
617 | for (d_ptr = &f->deps; *d_ptr; d_ptr = &(*d_ptr)->next)
|
---|
618 | ;
|
---|
619 |
|
---|
620 | *d_ptr = new;
|
---|
621 | }
|
---|
622 | }
|
---|
623 | }
|
---|
624 |
|
---|
625 | free_dep_chain (old);
|
---|
626 | }
|
---|
627 |
|
---|
628 | /* For each dependency of each file, make the `struct dep' point
|
---|
629 | at the appropriate `struct file' (which may have to be created).
|
---|
630 |
|
---|
631 | Also mark the files depended on by .PRECIOUS, .PHONY, .SILENT,
|
---|
632 | and various other special targets. */
|
---|
633 |
|
---|
634 | void
|
---|
635 | snap_deps (void)
|
---|
636 | {
|
---|
637 | struct file *f;
|
---|
638 | struct file *f2;
|
---|
639 | struct dep *d;
|
---|
640 | struct file **file_slot_0;
|
---|
641 | struct file **file_slot;
|
---|
642 | struct file **file_end;
|
---|
643 |
|
---|
644 | /* Perform second expansion and enter each dependency name as a file. */
|
---|
645 |
|
---|
646 | /* Expand .SUFFIXES first; it's dependencies are used for $$* calculation. */
|
---|
647 | for (f = lookup_file (".SUFFIXES"); f != 0; f = f->prev)
|
---|
648 | expand_deps (f);
|
---|
649 |
|
---|
650 | /* For every target that's not .SUFFIXES, expand its dependencies.
|
---|
651 | We must use hash_dump (), because within this loop we might add new files
|
---|
652 | to the table, possibly causing an in-situ table expansion. */
|
---|
653 | file_slot_0 = (struct file **) hash_dump (&files, 0, 0);
|
---|
654 | file_end = file_slot_0 + files.ht_fill;
|
---|
655 | for (file_slot = file_slot_0; file_slot < file_end; file_slot++)
|
---|
656 | for (f = *file_slot; f != 0; f = f->prev)
|
---|
657 | if (strcmp (f->name, ".SUFFIXES") != 0)
|
---|
658 | expand_deps (f);
|
---|
659 | free (file_slot_0);
|
---|
660 |
|
---|
661 | /* Now manage all the special targets. */
|
---|
662 |
|
---|
663 | for (f = lookup_file (".PRECIOUS"); f != 0; f = f->prev)
|
---|
664 | for (d = f->deps; d != 0; d = d->next)
|
---|
665 | for (f2 = d->file; f2 != 0; f2 = f2->prev)
|
---|
666 | f2->precious = 1;
|
---|
667 |
|
---|
668 | for (f = lookup_file (".LOW_RESOLUTION_TIME"); f != 0; f = f->prev)
|
---|
669 | for (d = f->deps; d != 0; d = d->next)
|
---|
670 | for (f2 = d->file; f2 != 0; f2 = f2->prev)
|
---|
671 | f2->low_resolution_time = 1;
|
---|
672 |
|
---|
673 | for (f = lookup_file (".PHONY"); f != 0; f = f->prev)
|
---|
674 | for (d = f->deps; d != 0; d = d->next)
|
---|
675 | for (f2 = d->file; f2 != 0; f2 = f2->prev)
|
---|
676 | {
|
---|
677 | /* Mark this file as phony nonexistent target. */
|
---|
678 | f2->phony = 1;
|
---|
679 | f2->is_target = 1;
|
---|
680 | f2->last_mtime = NONEXISTENT_MTIME;
|
---|
681 | f2->mtime_before_update = NONEXISTENT_MTIME;
|
---|
682 | }
|
---|
683 |
|
---|
684 | for (f = lookup_file (".INTERMEDIATE"); f != 0; f = f->prev)
|
---|
685 | /* Mark .INTERMEDIATE deps as intermediate files. */
|
---|
686 | for (d = f->deps; d != 0; d = d->next)
|
---|
687 | for (f2 = d->file; f2 != 0; f2 = f2->prev)
|
---|
688 | f2->intermediate = 1;
|
---|
689 | /* .INTERMEDIATE with no deps does nothing.
|
---|
690 | Marking all files as intermediates is useless since the goal targets
|
---|
691 | would be deleted after they are built. */
|
---|
692 |
|
---|
693 | for (f = lookup_file (".SECONDARY"); f != 0; f = f->prev)
|
---|
694 | /* Mark .SECONDARY deps as both intermediate and secondary. */
|
---|
695 | if (f->deps)
|
---|
696 | for (d = f->deps; d != 0; d = d->next)
|
---|
697 | for (f2 = d->file; f2 != 0; f2 = f2->prev)
|
---|
698 | f2->intermediate = f2->secondary = 1;
|
---|
699 | /* .SECONDARY with no deps listed marks *all* files that way. */
|
---|
700 | else
|
---|
701 | {
|
---|
702 | all_secondary = 1;
|
---|
703 | hash_map (&files, set_intermediate);
|
---|
704 | }
|
---|
705 |
|
---|
706 | f = lookup_file (".EXPORT_ALL_VARIABLES");
|
---|
707 | if (f != 0 && f->is_target)
|
---|
708 | export_all_variables = 1;
|
---|
709 |
|
---|
710 | f = lookup_file (".IGNORE");
|
---|
711 | if (f != 0 && f->is_target)
|
---|
712 | {
|
---|
713 | if (f->deps == 0)
|
---|
714 | ignore_errors_flag = 1;
|
---|
715 | else
|
---|
716 | for (d = f->deps; d != 0; d = d->next)
|
---|
717 | for (f2 = d->file; f2 != 0; f2 = f2->prev)
|
---|
718 | f2->command_flags |= COMMANDS_NOERROR;
|
---|
719 | }
|
---|
720 |
|
---|
721 | f = lookup_file (".SILENT");
|
---|
722 | if (f != 0 && f->is_target)
|
---|
723 | {
|
---|
724 | if (f->deps == 0)
|
---|
725 | silent_flag = 1;
|
---|
726 | else
|
---|
727 | for (d = f->deps; d != 0; d = d->next)
|
---|
728 | for (f2 = d->file; f2 != 0; f2 = f2->prev)
|
---|
729 | f2->command_flags |= COMMANDS_SILENT;
|
---|
730 | }
|
---|
731 |
|
---|
732 | f = lookup_file (".NOTPARALLEL");
|
---|
733 | if (f != 0 && f->is_target)
|
---|
734 | not_parallel = 1;
|
---|
735 |
|
---|
736 | #ifndef NO_MINUS_C_MINUS_O
|
---|
737 | /* If .POSIX was defined, remove OUTPUT_OPTION to comply. */
|
---|
738 | /* This needs more work: what if the user sets this in the makefile?
|
---|
739 | if (posix_pedantic)
|
---|
740 | define_variable (STRING_SIZE_TUPLE("OUTPUT_OPTION"), "", o_default, 1);
|
---|
741 | */
|
---|
742 | #endif
|
---|
743 |
|
---|
744 | /* Remember that we've done this. */
|
---|
745 | snapped_deps = 1;
|
---|
746 | }
|
---|
747 | |
---|
748 |
|
---|
749 | /* Set the `command_state' member of FILE and all its `also_make's. */
|
---|
750 |
|
---|
751 | void
|
---|
752 | set_command_state (struct file *file, enum cmd_state state)
|
---|
753 | {
|
---|
754 | struct dep *d;
|
---|
755 |
|
---|
756 | file->command_state = state;
|
---|
757 |
|
---|
758 | for (d = file->also_make; d != 0; d = d->next)
|
---|
759 | d->file->command_state = state;
|
---|
760 | }
|
---|
761 | |
---|
762 |
|
---|
763 | /* Convert an external file timestamp to internal form. */
|
---|
764 |
|
---|
765 | FILE_TIMESTAMP
|
---|
766 | file_timestamp_cons (const char *fname, time_t s, int ns)
|
---|
767 | {
|
---|
768 | int offset = ORDINARY_MTIME_MIN + (FILE_TIMESTAMP_HI_RES ? ns : 0);
|
---|
769 | FILE_TIMESTAMP product = (FILE_TIMESTAMP) s << FILE_TIMESTAMP_LO_BITS;
|
---|
770 | FILE_TIMESTAMP ts = product + offset;
|
---|
771 |
|
---|
772 | if (! (s <= FILE_TIMESTAMP_S (ORDINARY_MTIME_MAX)
|
---|
773 | && product <= ts && ts <= ORDINARY_MTIME_MAX))
|
---|
774 | {
|
---|
775 | char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
|
---|
776 | ts = s <= OLD_MTIME ? ORDINARY_MTIME_MIN : ORDINARY_MTIME_MAX;
|
---|
777 | file_timestamp_sprintf (buf, ts);
|
---|
778 | error (NILF, _("%s: Timestamp out of range; substituting %s"),
|
---|
779 | fname ? fname : _("Current time"), buf);
|
---|
780 | }
|
---|
781 |
|
---|
782 | return ts;
|
---|
783 | }
|
---|
784 | |
---|
785 |
|
---|
786 | /* Return the current time as a file timestamp, setting *RESOLUTION to
|
---|
787 | its resolution. */
|
---|
788 | FILE_TIMESTAMP
|
---|
789 | file_timestamp_now (int *resolution)
|
---|
790 | {
|
---|
791 | int r;
|
---|
792 | time_t s;
|
---|
793 | int ns;
|
---|
794 |
|
---|
795 | /* Don't bother with high-resolution clocks if file timestamps have
|
---|
796 | only one-second resolution. The code below should work, but it's
|
---|
797 | not worth the hassle of debugging it on hosts where it fails. */
|
---|
798 | #if FILE_TIMESTAMP_HI_RES
|
---|
799 | # if HAVE_CLOCK_GETTIME && defined CLOCK_REALTIME
|
---|
800 | {
|
---|
801 | struct timespec timespec;
|
---|
802 | if (clock_gettime (CLOCK_REALTIME, ×pec) == 0)
|
---|
803 | {
|
---|
804 | r = 1;
|
---|
805 | s = timespec.tv_sec;
|
---|
806 | ns = timespec.tv_nsec;
|
---|
807 | goto got_time;
|
---|
808 | }
|
---|
809 | }
|
---|
810 | # endif
|
---|
811 | # if HAVE_GETTIMEOFDAY
|
---|
812 | {
|
---|
813 | struct timeval timeval;
|
---|
814 | if (gettimeofday (&timeval, 0) == 0)
|
---|
815 | {
|
---|
816 | r = 1000;
|
---|
817 | s = timeval.tv_sec;
|
---|
818 | ns = timeval.tv_usec * 1000;
|
---|
819 | goto got_time;
|
---|
820 | }
|
---|
821 | }
|
---|
822 | # endif
|
---|
823 | #endif
|
---|
824 |
|
---|
825 | r = 1000000000;
|
---|
826 | s = time ((time_t *) 0);
|
---|
827 | ns = 0;
|
---|
828 |
|
---|
829 | #if FILE_TIMESTAMP_HI_RES
|
---|
830 | got_time:
|
---|
831 | #endif
|
---|
832 | *resolution = r;
|
---|
833 | return file_timestamp_cons (0, s, ns);
|
---|
834 | }
|
---|
835 |
|
---|
836 | /* Place into the buffer P a printable representation of the file
|
---|
837 | timestamp TS. */
|
---|
838 | void
|
---|
839 | file_timestamp_sprintf (char *p, FILE_TIMESTAMP ts)
|
---|
840 | {
|
---|
841 | time_t t = FILE_TIMESTAMP_S (ts);
|
---|
842 | struct tm *tm = localtime (&t);
|
---|
843 |
|
---|
844 | if (tm)
|
---|
845 | sprintf (p, "%04d-%02d-%02d %02d:%02d:%02d",
|
---|
846 | tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
|
---|
847 | tm->tm_hour, tm->tm_min, tm->tm_sec);
|
---|
848 | else if (t < 0)
|
---|
849 | sprintf (p, "%ld", (long) t);
|
---|
850 | else
|
---|
851 | sprintf (p, "%lu", (unsigned long) t);
|
---|
852 | p += strlen (p);
|
---|
853 |
|
---|
854 | /* Append nanoseconds as a fraction, but remove trailing zeros. We don't
|
---|
855 | know the actual timestamp resolution, since clock_getres applies only to
|
---|
856 | local times, whereas this timestamp might come from a remote filesystem.
|
---|
857 | So removing trailing zeros is the best guess that we can do. */
|
---|
858 | sprintf (p, ".%09d", FILE_TIMESTAMP_NS (ts));
|
---|
859 | p += strlen (p) - 1;
|
---|
860 | while (*p == '0')
|
---|
861 | p--;
|
---|
862 | p += *p != '.';
|
---|
863 |
|
---|
864 | *p = '\0';
|
---|
865 | }
|
---|
866 | |
---|
867 |
|
---|
868 | /* Print the data base of files. */
|
---|
869 |
|
---|
870 | static void
|
---|
871 | print_file (const void *item)
|
---|
872 | {
|
---|
873 | const struct file *f = item;
|
---|
874 | struct dep *d;
|
---|
875 | struct dep *ood = 0;
|
---|
876 |
|
---|
877 | putchar ('\n');
|
---|
878 | if (!f->is_target)
|
---|
879 | puts (_("# Not a target:"));
|
---|
880 | printf ("%s:%s", f->name, f->double_colon ? ":" : "");
|
---|
881 |
|
---|
882 | /* Print all normal dependencies; note any order-only deps. */
|
---|
883 | for (d = f->deps; d != 0; d = d->next)
|
---|
884 | if (! d->ignore_mtime)
|
---|
885 | printf (" %s", dep_name (d));
|
---|
886 | else if (! ood)
|
---|
887 | ood = d;
|
---|
888 |
|
---|
889 | /* Print order-only deps, if we have any. */
|
---|
890 | if (ood)
|
---|
891 | {
|
---|
892 | printf (" | %s", dep_name (ood));
|
---|
893 | for (d = ood->next; d != 0; d = d->next)
|
---|
894 | if (d->ignore_mtime)
|
---|
895 | printf (" %s", dep_name (d));
|
---|
896 | }
|
---|
897 |
|
---|
898 | putchar ('\n');
|
---|
899 |
|
---|
900 | if (f->precious)
|
---|
901 | puts (_("# Precious file (prerequisite of .PRECIOUS)."));
|
---|
902 | if (f->phony)
|
---|
903 | puts (_("# Phony target (prerequisite of .PHONY)."));
|
---|
904 | if (f->cmd_target)
|
---|
905 | puts (_("# Command line target."));
|
---|
906 | if (f->dontcare)
|
---|
907 | puts (_("# A default, MAKEFILES, or -include/sinclude makefile."));
|
---|
908 | puts (f->tried_implicit
|
---|
909 | ? _("# Implicit rule search has been done.")
|
---|
910 | : _("# Implicit rule search has not been done."));
|
---|
911 | if (f->stem != 0)
|
---|
912 | printf (_("# Implicit/static pattern stem: `%s'\n"), f->stem);
|
---|
913 | if (f->intermediate)
|
---|
914 | puts (_("# File is an intermediate prerequisite."));
|
---|
915 | if (f->also_make != 0)
|
---|
916 | {
|
---|
917 | fputs (_("# Also makes:"), stdout);
|
---|
918 | for (d = f->also_make; d != 0; d = d->next)
|
---|
919 | printf (" %s", dep_name (d));
|
---|
920 | putchar ('\n');
|
---|
921 | }
|
---|
922 | if (f->last_mtime == UNKNOWN_MTIME)
|
---|
923 | puts (_("# Modification time never checked."));
|
---|
924 | else if (f->last_mtime == NONEXISTENT_MTIME)
|
---|
925 | puts (_("# File does not exist."));
|
---|
926 | else if (f->last_mtime == OLD_MTIME)
|
---|
927 | puts (_("# File is very old."));
|
---|
928 | else
|
---|
929 | {
|
---|
930 | char buf[FILE_TIMESTAMP_PRINT_LEN_BOUND + 1];
|
---|
931 | file_timestamp_sprintf (buf, f->last_mtime);
|
---|
932 | printf (_("# Last modified %s\n"), buf);
|
---|
933 | }
|
---|
934 | puts (f->updated
|
---|
935 | ? _("# File has been updated.") : _("# File has not been updated."));
|
---|
936 | switch (f->command_state)
|
---|
937 | {
|
---|
938 | case cs_running:
|
---|
939 | puts (_("# Recipe currently running (THIS IS A BUG)."));
|
---|
940 | break;
|
---|
941 | case cs_deps_running:
|
---|
942 | puts (_("# Dependencies recipe running (THIS IS A BUG)."));
|
---|
943 | break;
|
---|
944 | case cs_not_started:
|
---|
945 | case cs_finished:
|
---|
946 | switch (f->update_status)
|
---|
947 | {
|
---|
948 | case -1:
|
---|
949 | break;
|
---|
950 | case 0:
|
---|
951 | puts (_("# Successfully updated."));
|
---|
952 | break;
|
---|
953 | case 1:
|
---|
954 | assert (question_flag);
|
---|
955 | puts (_("# Needs to be updated (-q is set)."));
|
---|
956 | break;
|
---|
957 | case 2:
|
---|
958 | puts (_("# Failed to be updated."));
|
---|
959 | break;
|
---|
960 | default:
|
---|
961 | puts (_("# Invalid value in `update_status' member!"));
|
---|
962 | fflush (stdout);
|
---|
963 | fflush (stderr);
|
---|
964 | abort ();
|
---|
965 | }
|
---|
966 | break;
|
---|
967 | default:
|
---|
968 | puts (_("# Invalid value in `command_state' member!"));
|
---|
969 | fflush (stdout);
|
---|
970 | fflush (stderr);
|
---|
971 | abort ();
|
---|
972 | }
|
---|
973 |
|
---|
974 | if (f->variables != 0)
|
---|
975 | print_file_variables (f);
|
---|
976 |
|
---|
977 | if (f->cmds != 0)
|
---|
978 | print_commands (f->cmds);
|
---|
979 |
|
---|
980 | if (f->prev)
|
---|
981 | print_file ((const void *) f->prev);
|
---|
982 | }
|
---|
983 |
|
---|
984 | void
|
---|
985 | print_file_data_base (void)
|
---|
986 | {
|
---|
987 | puts (_("\n# Files"));
|
---|
988 |
|
---|
989 | hash_map (&files, print_file);
|
---|
990 |
|
---|
991 | fputs (_("\n# files hash-table stats:\n# "), stdout);
|
---|
992 | hash_print_stats (&files, stdout);
|
---|
993 | }
|
---|
994 | |
---|
995 |
|
---|
996 | /* Verify the integrity of the data base of files. */
|
---|
997 |
|
---|
998 | #define VERIFY_CACHED(_p,_n) \
|
---|
999 | do{\
|
---|
1000 | if (_p->_n && _p->_n[0] && !strcache_iscached (_p->_n)) \
|
---|
1001 | printf ("%s: Field %s not cached: %s\n", _p->name, # _n, _p->_n); \
|
---|
1002 | }while(0)
|
---|
1003 |
|
---|
1004 | static void
|
---|
1005 | verify_file (const void *item)
|
---|
1006 | {
|
---|
1007 | const struct file *f = item;
|
---|
1008 | const struct dep *d;
|
---|
1009 |
|
---|
1010 | VERIFY_CACHED (f, name);
|
---|
1011 | VERIFY_CACHED (f, hname);
|
---|
1012 | VERIFY_CACHED (f, vpath);
|
---|
1013 | VERIFY_CACHED (f, stem);
|
---|
1014 |
|
---|
1015 | /* Check the deps. */
|
---|
1016 | for (d = f->deps; d != 0; d = d->next)
|
---|
1017 | {
|
---|
1018 | VERIFY_CACHED (d, name);
|
---|
1019 | VERIFY_CACHED (d, stem);
|
---|
1020 | }
|
---|
1021 | }
|
---|
1022 |
|
---|
1023 | void
|
---|
1024 | verify_file_data_base (void)
|
---|
1025 | {
|
---|
1026 | hash_map (&files, verify_file);
|
---|
1027 | }
|
---|
1028 |
|
---|
1029 | #define EXPANSION_INCREMENT(_l) ((((_l) / 500) + 1) * 500)
|
---|
1030 |
|
---|
1031 | char *
|
---|
1032 | build_target_list (char *value)
|
---|
1033 | {
|
---|
1034 | static unsigned long last_targ_count = 0;
|
---|
1035 |
|
---|
1036 | if (files.ht_fill != last_targ_count)
|
---|
1037 | {
|
---|
1038 | unsigned long max = EXPANSION_INCREMENT (strlen (value));
|
---|
1039 | unsigned long len;
|
---|
1040 | char *p;
|
---|
1041 | struct file **fp = (struct file **) files.ht_vec;
|
---|
1042 | struct file **end = &fp[files.ht_size];
|
---|
1043 |
|
---|
1044 | /* Make sure we have at least MAX bytes in the allocated buffer. */
|
---|
1045 | value = xrealloc (value, max);
|
---|
1046 |
|
---|
1047 | p = value;
|
---|
1048 | len = 0;
|
---|
1049 | for (; fp < end; ++fp)
|
---|
1050 | if (!HASH_VACANT (*fp) && (*fp)->is_target)
|
---|
1051 | {
|
---|
1052 | struct file *f = *fp;
|
---|
1053 | int l = strlen (f->name);
|
---|
1054 |
|
---|
1055 | len += l + 1;
|
---|
1056 | if (len > max)
|
---|
1057 | {
|
---|
1058 | unsigned long off = p - value;
|
---|
1059 |
|
---|
1060 | max += EXPANSION_INCREMENT (l + 1);
|
---|
1061 | value = xrealloc (value, max);
|
---|
1062 | p = &value[off];
|
---|
1063 | }
|
---|
1064 |
|
---|
1065 | memcpy (p, f->name, l);
|
---|
1066 | p += l;
|
---|
1067 | *(p++) = ' ';
|
---|
1068 | }
|
---|
1069 | *(p-1) = '\0';
|
---|
1070 |
|
---|
1071 | last_targ_count = files.ht_fill;
|
---|
1072 | }
|
---|
1073 |
|
---|
1074 | return value;
|
---|
1075 | }
|
---|
1076 |
|
---|
1077 | void
|
---|
1078 | init_hash_files (void)
|
---|
1079 | {
|
---|
1080 | hash_init (&files, 1000, file_hash_1, file_hash_2, file_hash_cmp);
|
---|
1081 | }
|
---|
1082 |
|
---|
1083 | /* EOF */
|
---|