0c20a65f04
* jump.c: Convert prototypes to ISO C90. * langhooks-def.h: Likewise. Add extern to prototypes. * langhooks.c: Likewise. * langhooks.h: Likewise. * lcm.c: Likewise. * local-alloc.c: Likewise. * loop-init.c: Likewise. * loop-unroll.c: Likewise. * loop-unswitch.c: Likewise. * loop.c: Likewise. * loop.h: Likewise. Add extern to prototypes. * machmode.h: Likewise. * main.c: Likewise. * mbchar.c: Likewise. * mbchar.h: Likewise. * mkdeps.c: Likewise. * mkdeps.h: Likewise. * optabs.c: Likewise. * optabs.h: Likewise. * output.h: Likewise. * gccspec.c: Likwise. * postreload.c: Likewise. * prefix.c: Likewise. * prefix.h: Likewise. * print-rtl.c: Likewise. * print-tree.c: Likewise. * profile.c: Likewise. * read-rtl.c: Likewise. * real.c: Likewise. * real.h: Likewise. * recog.c: Likewise. * recog.h: Likewise. * reg-stack.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * regrename.c: Likewise. * regs.h: Likewise. * reload.c: Likewise. * reload.h: Likewise. * reload1.c: Likewise. * reorg.c: Likewise. * resource.c: Likewise. * resource.h: Likewise. * rtl-error.c: Likewise. * rtl.c: Likewise. * rtl.h: Likewise. * rtlanal.c: Likewise. From-SVN: r68998
73 lines
3.1 KiB
C
73 lines
3.1 KiB
C
/* Dependency generator for Makefile fragments.
|
|
Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc.
|
|
Contributed by Zack Weinberg, Mar 2000
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 2, or (at your option) any
|
|
later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
In other words, you are welcome to use, share and improve this program.
|
|
You are forbidden to forbid anyone else to use, share and improve
|
|
what you give them. Help stamp out software-hoarding! */
|
|
|
|
#ifndef GCC_MKDEPS_H
|
|
#define GCC_MKDEPS_H
|
|
|
|
/* This is the data structure used by all the functions in mkdeps.c.
|
|
It's quite straightforward, but should be treated as opaque. */
|
|
|
|
struct deps;
|
|
|
|
/* Create a deps buffer. */
|
|
extern struct deps *deps_init (void);
|
|
|
|
/* Destroy a deps buffer. */
|
|
extern void deps_free (struct deps *);
|
|
|
|
/* Add a target (appears on left side of the colon) to the deps list. Takes
|
|
a boolean indicating whether to quote the target for MAKE. */
|
|
extern void deps_add_target (struct deps *, const char *, int);
|
|
|
|
/* Sets the default target if none has been given already. An empty
|
|
string as the default target is interpreted as stdin. */
|
|
extern void deps_add_default_target (struct deps *, const char *);
|
|
|
|
/* Add a dependency (appears on the right side of the colon) to the
|
|
deps list. Dependencies will be printed in the order that they
|
|
were entered with this function. By convention, the first
|
|
dependency entered should be the primary source file. */
|
|
extern void deps_add_dep (struct deps *, const char *);
|
|
|
|
/* Write out a deps buffer to a specified file. The third argument
|
|
is the number of columns to word-wrap at (0 means don't wrap). */
|
|
extern void deps_write (const struct deps *, FILE *, unsigned int);
|
|
|
|
/* Write out a deps buffer to a file, in a form that can be read back
|
|
with deps_restore. Returns nonzero on error, in which case the
|
|
error number will be in errno. */
|
|
extern int deps_save (struct deps *, FILE *);
|
|
|
|
/* Read back dependency information written with deps_save into
|
|
the deps buffer. The third argument may be NULL, in which case
|
|
the dependency information is just skipped, or it may be a filename,
|
|
in which case that filename is skipped. */
|
|
extern int deps_restore (struct deps *, FILE *, const char *);
|
|
|
|
/* For each dependency *except the first*, emit a dummy rule for that
|
|
file, causing it to depend on nothing. This is used to work around
|
|
the intermediate-file deletion misfeature in Make, in some
|
|
automatic dependency schemes. */
|
|
extern void deps_phony_targets (const struct deps *, FILE *);
|
|
|
|
#endif /* ! GCC_MKDEPS_H */
|