mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-25 19:26:10 +08:00
gcc/ * Makefile.in (BUILD_RTL): Move build/read-md.o to... (BUILD_MD): ...this new variable. (simple_generated_rtl_h, simple_generated_rtl_c): New variables that include the old contents of simple_generated_h and simple_generated_c. (simple_generated_h, simple_generated_c): Include them. Add insn-constants.h. (s-%): Make simple_generated_{h,c} stamps depend on $(MD_DEPS) and simple_generated_rtl_{h,c} stamps depend on insn-conditions.md. Remove these dependencies from the main rule and include insn-conditions.md in the command line only if it appears in the dependency list. (insn-constants.h, s-constants): Delete. (build/genconstants.o): Don't depend on $(RTL_BASE_H), $(GTM_H) or gensupport.h. (build/genmddeps.o): Likewise. (genprogrtl): New variable that contains everything from genprogmd except mddeps and constants. (genprogmd): Redefine in terms of genprogrtl. Make these programs depend on $(BUILD_MD) (genprog): New variable. Make these programs depend on $(BUILD_ERRORS). * genmddeps.c: Don't include tm.h, rtl.h or gensupport.h. (main): Use read_md_files instead of init_rtx_reader_args. * genconstants.c: As for genmddeps.c. * read-md.h (read_skip_construct): Declare. * read-md.c (read_skip_construct): New function. (handle_file): Allow a null handle_directive, skipping the construct if so. (parse_include): Update the comment accordingly. From-SVN: r160578
69 lines
1.8 KiB
C
69 lines
1.8 KiB
C
/* genmddeps.c - creates a makefile dependency fragment for the md file.
|
|
Copyright (C) 2004, 2007 Free Software Foundation, Inc.
|
|
|
|
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 3, 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; see the file COPYING3. If not see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#include "bconfig.h"
|
|
#include "system.h"
|
|
#include "coretypes.h"
|
|
#include "errors.h"
|
|
#include "read-md.h"
|
|
|
|
|
|
struct filedep
|
|
{
|
|
struct filedep *next;
|
|
const char *pathname;
|
|
};
|
|
|
|
static struct filedep *deps, **last = &deps;
|
|
|
|
static void
|
|
add_filedep (const char *pathname)
|
|
{
|
|
struct filedep *n = XNEW (struct filedep);
|
|
n->pathname = pathname;
|
|
*last = n;
|
|
last = &n->next;
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
struct filedep *d;
|
|
|
|
progname = "genmddeps";
|
|
include_callback = add_filedep;
|
|
|
|
if (!read_md_files (argc, argv, NULL, NULL))
|
|
return FATAL_EXIT_CODE;
|
|
|
|
*last = NULL;
|
|
|
|
/* Output a variable containing all of the include files. */
|
|
fputs ("MD_INCLUDES =", stdout);
|
|
for (d = deps; d ; d = d->next)
|
|
printf (" \\\n\t%s", d->pathname);
|
|
putchar ('\n');
|
|
|
|
/* Output make targets for these includes with empty actions. This
|
|
will guard against make errors when includes are removed. */
|
|
for (d = deps; d ; d = d->next)
|
|
printf ("\n%s:\n", d->pathname);
|
|
|
|
fflush (stdout);
|
|
return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
|
|
}
|