diff options
| author | Zack Weinberg <zack@codesourcery.com> | 2001-12-04 18:02:50 +0000 |
|---|---|---|
| committer | Zack Weinberg <zack@gcc.gnu.org> | 2001-12-04 18:02:50 +0000 |
| commit | a078a5895673e2c0c256535cd285432bfe1f2f4c (patch) | |
| tree | 4515ab31c18b893d271384e84d861c3ef8261b69 /gcc/ch | |
| parent | 8a38ed868f46c143af3df2f08ef58205faf4919e (diff) | |
| download | gcc-a078a5895673e2c0c256535cd285432bfe1f2f4c.zip gcc-a078a5895673e2c0c256535cd285432bfe1f2f4c.tar.gz gcc-a078a5895673e2c0c256535cd285432bfe1f2f4c.tar.bz2 | |
build-make, cross-make: Delete file.
* build-make, cross-make: Delete file.
* configure.in: Set and substitute CROSS, ALL,
SYSTEM_HEADER_DIR, HOST_PREFIX, HOST_PREFIX_1, HOST_CC,
HOST_CFLAGS, STMP_FIXINC, and STMP_FIXPROTO depending on
whether build == host and host == target. Do not
AC_SUBST_FILE build_overrides or cross_overrides. Do not
AC_SUBST cross_defines or extra_c_flags.
* Makefile.in (NATIVE_SYSTEM_HEADER_DIR): New.
(SYSTEM_HEADER_DIR, HOST_PREFIX, HOST_CC, HOST_PREFIX,
HOST_PREFIX_1, HOST_CFLAGS, ALL, INTERNAL_CFLAGS): Set
partially or completely with autoconf-substituted @variable@
notation.
(INSTALL_TARGET, @cross_defines@, @cross_overrides@,
@build_overrides@, @extra_c_flags@, all.build, install-build,
install-cross-rest, install-float-h-cross): Deleted.
(install-normal): Rename to install. Delete old "install"
indirection rule.
* ada/Makefile.in, ch/Makefile.in: Don't set ALL. Delete
@cross_defines@, @cross_overrides@, @build_overrides@ stanzas.
INTERNAL_CFLAGS is now @CROSS@ -DIN_GCC; update comment.
From-SVN: r47617
Diffstat (limited to 'gcc/ch')
| -rw-r--r-- | gcc/ch/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/ch/Makefile.in | 17 |
2 files changed, 11 insertions, 12 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index c3641f4..9b5f97a 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -1,3 +1,9 @@ +2001-12-04 Zack Weinberg <zack@codesourcery.com> + + * Makefile.in: Don't set ALL. Delete @cross_defines@, + @cross_overrides@, @build_overrides@ stanzas. INTERNAL_CFLAGS + is now @CROSS@ -DIN_GCC; update comment. + 2001-12-03 Neil Booth <neil@daikokuya.demon.co.uk> * actions.c: Remove leading capital from diagnostic messages, as diff --git a/gcc/ch/Makefile.in b/gcc/ch/Makefile.in index 05925f6..76aa268 100644 --- a/gcc/ch/Makefile.in +++ b/gcc/ch/Makefile.in @@ -103,9 +103,6 @@ INTLLIBS = @INTLLIBS@ # Additional system libraries to link with. CLIB= -# Choose the real default target. -ALL=all - # End of variables for you to override. # Definition of `all' is here so that new rules inserted by sed @@ -118,22 +115,18 @@ all: all.indirect # sed inserts variable overrides after the following line. ####target overrides @target_overrides@ + ####host overrides @host_overrides@ -####cross overrides -@cross_defines@ -@cross_overrides@ -####build overrides -@build_overrides@ -####site overrides -# @site_overrides@ # # Now figure out from those variables how to compile and link. all.indirect: Makefile ../chill ../cc1chill$(exeext) -# IN_GCC tells obstack.h that we are using gcc's <stddef.h> file. -INTERNAL_CFLAGS = $(CROSS) -DIN_GCC @extra_c_flags@ +# IN_GCC distinguishes between code compiled into GCC itself and other +# programs built during a bootstrap. +# autoconf inserts -DCROSS_COMPILE if we are building a cross compiler. +INTERNAL_CFLAGS = -DIN_GCC @CROSS@ # This is the variable actually used when we compile. ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) |
