diff options
Diffstat (limited to 'src/kmk/commands.h')
-rw-r--r-- | src/kmk/commands.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/kmk/commands.h b/src/kmk/commands.h index 1e5f6ee..df4ab4c 100644 --- a/src/kmk/commands.h +++ b/src/kmk/commands.h @@ -1,7 +1,7 @@ /* Definition of data structures describing shell commands for GNU Make. Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, -1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software -Foundation, Inc. +1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, +2010 Free Software Foundation, Inc. This file is part of GNU Make. GNU Make is free software; you can redistribute it and/or modify it under the @@ -61,3 +61,7 @@ void set_file_variables (struct file *file, int called_early); #else void set_file_variables (struct file *file); #endif +#ifdef CONFIG_WITH_LAZY_DEPS_VARS +struct dep *create_uniqute_deps_chain (struct dep *deps); +#endif + |