Deleted Added
full compact
Makefile.in (96273) Makefile.in (102789)
1# Makefile for GNU C compiler.
2# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3# 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5#This file is part of GCC.
6
7#GCC is free software; you can redistribute it and/or modify
8#it under the terms of the GNU General Public License as published by

--- 5 unchanged lines hidden (view full) ---

14#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15#GNU General Public License for more details.
16
17#You should have received a copy of the GNU General Public License
18#along with GCC; see the file COPYING. If not, write to
19#the Free Software Foundation, 59 Temple Place - Suite 330,
20#Boston MA 02111-1307, USA.
21
1# Makefile for GNU C compiler.
2# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3# 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5#This file is part of GCC.
6
7#GCC is free software; you can redistribute it and/or modify
8#it under the terms of the GNU General Public License as published by

--- 5 unchanged lines hidden (view full) ---

14#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15#GNU General Public License for more details.
16
17#You should have received a copy of the GNU General Public License
18#along with GCC; see the file COPYING. If not, write to
19#the Free Software Foundation, 59 Temple Place - Suite 330,
20#Boston MA 02111-1307, USA.
21
22# $FreeBSD: head/contrib/gcc/Makefile.in 96273 2002-05-09 21:06:15Z obrien $
22# $FreeBSD: head/contrib/gcc/Makefile.in 102789 2002-09-01 20:49:59Z kan $
23
24# The targets for external use include:
25# all, doc, proto, install, install-cross, install-cross-rest,
26# uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
27# stage1, stage2, stage3, stage4.
28
29# This is the default target.
30all:

--- 507 unchanged lines hidden (view full) ---

538# CONFIG_H lists the the ones ordinary gcc files depend on, which includes
539# several files generated by those generators.
540GCONFIG_H = config.h $(host_xm_file_list)
541HCONFIG_H = hconfig.h $(build_xm_file_list)
542CONFIG_H = $(GCONFIG_H) insn-constants.h insn-flags.h
543TCONFIG_H = tconfig.h $(xm_file_list)
544TARGET_H = target.h
545HOOKS_H = hooks.h
23
24# The targets for external use include:
25# all, doc, proto, install, install-cross, install-cross-rest,
26# uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
27# stage1, stage2, stage3, stage4.
28
29# This is the default target.
30all:

--- 507 unchanged lines hidden (view full) ---

538# CONFIG_H lists the the ones ordinary gcc files depend on, which includes
539# several files generated by those generators.
540GCONFIG_H = config.h $(host_xm_file_list)
541HCONFIG_H = hconfig.h $(build_xm_file_list)
542CONFIG_H = $(GCONFIG_H) insn-constants.h insn-flags.h
543TCONFIG_H = tconfig.h $(xm_file_list)
544TARGET_H = target.h
545HOOKS_H = hooks.h
546LANGHOOKS_DEF_H = langhooks.h $(HOOKS_H)
546TARGET_DEF_H = target-def.h $(HOOKS_H)
547TM_P_H = tm_p.h $(tm_p_file_list) tm-preds.h
548
549MACHMODE_H = machmode.h machmode.def
550RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H)
551RTL_H = $(RTL_BASE_H) genrtl.h
552PARAMS_H = params.h params.def
553TREE_H = tree.h real.h tree.def $(MACHMODE_H) tree-check.h version.h builtins.def

--- 655 unchanged lines hidden (view full) ---

1209 -rm -f tmp-dum.c tmp-dum.s
1210 $(STAMP) s-under
1211
1212# A file used by all variants of C.
1213
1214c-common.o : c-common.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) \
1215 $(C_COMMON_H) flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1216 $(EXPR_H) $(TM_P_H) builtin-types.def builtin-attrs.def $(TARGET_H) \
547TARGET_DEF_H = target-def.h $(HOOKS_H)
548TM_P_H = tm_p.h $(tm_p_file_list) tm-preds.h
549
550MACHMODE_H = machmode.h machmode.def
551RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H)
552RTL_H = $(RTL_BASE_H) genrtl.h
553PARAMS_H = params.h params.def
554TREE_H = tree.h real.h tree.def $(MACHMODE_H) tree-check.h version.h builtins.def

--- 655 unchanged lines hidden (view full) ---

1210 -rm -f tmp-dum.c tmp-dum.s
1211 $(STAMP) s-under
1212
1213# A file used by all variants of C.
1214
1215c-common.o : c-common.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) \
1216 $(C_COMMON_H) flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1217 $(EXPR_H) $(TM_P_H) builtin-types.def builtin-attrs.def $(TARGET_H) \
1217 diagnostic.h tree-inline.h
1218 diagnostic.h tree-inline.h $(LANGHOOKS_DEF_H)
1218
1219# A file used by all variants of C and some other languages.
1220
1221attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) flags.h \
1222 toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) $(EXPR_H) $(TM_P_H) \
1223 builtin-types.def $(TARGET_H)
1224
1225c-format.o : c-format.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \

--- 98 unchanged lines hidden (view full) ---

1324 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1325 -DPREFIX=\"$(prefix)\" \
1326 -c $(srcdir)/prefix.c $(OUTPUT_OPTION)
1327
1328convert.o: convert.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h convert.h toplev.h
1329
1330langhooks.o : langhooks.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) toplev.h \
1331 tree-inline.h $(RTL_H) insn-config.h integrate.h langhooks.h \
1219
1220# A file used by all variants of C and some other languages.
1221
1222attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) flags.h \
1223 toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) $(EXPR_H) $(TM_P_H) \
1224 builtin-types.def $(TARGET_H)
1225
1226c-format.o : c-format.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \

--- 98 unchanged lines hidden (view full) ---

1325 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1326 -DPREFIX=\"$(prefix)\" \
1327 -c $(srcdir)/prefix.c $(OUTPUT_OPTION)
1328
1329convert.o: convert.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h convert.h toplev.h
1330
1331langhooks.o : langhooks.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) toplev.h \
1332 tree-inline.h $(RTL_H) insn-config.h integrate.h langhooks.h \
1332 langhooks-def.h flags.h
1333 $(LANGHOOKS_DEF_H) flags.h
1333tree.o : tree.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h function.h toplev.h \
1334 $(GGC_H) $(HASHTAB_H) $(TARGET_H) output.h $(TM_P_H) langhooks.h
1335tree-dump.o: tree-dump.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) \
1336 flags.h langhooks.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1337 $(EXPR_H) $(SPLAY_TREE_H) tree-dump.h
1338tree-inline.o : tree-inline.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) \
1339 expr.h flags.h params.h input.h insn-config.h $(INTEGRATE_H) \
1340 $(VARRAY_H) $(HASHTAB_H) $(SPLAY_TREE_H) toplev.h langhooks.h \

--- 2114 unchanged lines hidden ---
1334tree.o : tree.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h function.h toplev.h \
1335 $(GGC_H) $(HASHTAB_H) $(TARGET_H) output.h $(TM_P_H) langhooks.h
1336tree-dump.o: tree-dump.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) \
1337 flags.h langhooks.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1338 $(EXPR_H) $(SPLAY_TREE_H) tree-dump.h
1339tree-inline.o : tree-inline.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) \
1340 expr.h flags.h params.h input.h insn-config.h $(INTEGRATE_H) \
1341 $(VARRAY_H) $(HASHTAB_H) $(SPLAY_TREE_H) toplev.h langhooks.h \

--- 2114 unchanged lines hidden ---