OSDN Git Service

* gcc.c-torture/compile/20021120-1.c: New test.
[pf3gnuchains/gcc-fork.git] / gcc / mkdeps.h
1 /* Dependency generator for Makefile fragments.
2    Copyright (C) 2000, 2001 Free Software Foundation, Inc.
3    Contributed by Zack Weinberg, Mar 2000
4
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2, or (at your option) any
8 later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19  In other words, you are welcome to use, share and improve this program.
20  You are forbidden to forbid anyone else to use, share and improve
21  what you give them.   Help stamp out software-hoarding!  */
22
23 #ifndef GCC_MKDEPS_H
24 #define GCC_MKDEPS_H
25
26 /* This is the data structure used by all the functions in mkdeps.c.
27    It's quite straightforward, but should be treated as opaque.  */
28
29 struct deps;
30
31 /* Create a deps buffer.  */
32 extern struct deps *deps_init   PARAMS ((void));
33
34 /* Destroy a deps buffer.  */
35 extern void deps_free           PARAMS ((struct deps *));
36
37 /* Add a target (appears on left side of the colon) to the deps list.  Takes
38    a boolean indicating whether to quote the target for MAKE.  */
39 extern void deps_add_target     PARAMS ((struct deps *, const char *, int));
40
41 /* Sets the default target if none has been given already.  An empty
42    string as the default target in interpreted as stdin.  */
43 extern void deps_add_default_target PARAMS ((struct deps *, const char *));
44
45 /* Add a dependency (appears on the right side of the colon) to the
46    deps list.  Dependencies will be printed in the order that they
47    were entered with this function.  By convention, the first
48    dependency entered should be the primary source file.  */
49 extern void deps_add_dep        PARAMS ((struct deps *, const char *));
50
51 /* Write out a deps buffer to a specified file.  The third argument
52    is the number of columns to word-wrap at (0 means don't wrap).  */
53 extern void deps_write          PARAMS ((const struct deps *, FILE *,
54                                          unsigned int));
55
56 /* For each dependency *except the first*, emit a dummy rule for that
57    file, causing it to depend on nothing.  This is used to work around
58    the intermediate-file deletion misfeature in Make, in some
59    automatic dependency schemes.  */
60 extern void deps_phony_targets  PARAMS ((const struct deps *, FILE *));
61
62 #endif /* ! GCC_MKDEPS_H */