Ignore:
Timestamp:
Jun 20, 2012, 12:44:52 AM (13 years ago)
Author:
bird
Message:

gnumake/current -> 3.82-cvs.

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  
    11/* Definition of target file data structures for GNU Make.
    22Copyright (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.
     31998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
     42010 Free Software Foundation, Inc.
    55This file is part of GNU Make.
    66
     
    9595    unsigned int considered:1;  /* equal to 'considered' if file has been
    9696                                   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). */
    9799  };
    98100
    99101
    100 extern struct file *default_goal_file, *suffix_file, *default_file;
    101 extern char **default_goal_name;
     102extern struct file *suffix_file, *default_file;
    102103
    103104
    104105struct file *lookup_file (const char *name);
    105106struct file *enter_file (const char *name);
    106 struct dep *parse_prereqs (char *prereqs);
     107struct dep *split_prereqs (char *prereqstr);
     108struct dep *enter_prereqs (struct dep *prereqs, const char *stem);
    107109void remove_intermediates (int sig);
    108110void snap_deps (void);
     
    113115void init_hash_files (void);
    114116char *build_target_list (char *old_list);
     117void print_prereqs (const struct dep *deps);
     118void print_file_data_base (void);
    115119
    116120#if FILE_TIMESTAMP_HI_RES
Note: See TracChangeset for help on using the changeset viewer.