diff options
author | Manfred Hollstein <mhollstein@cygnus.com> | 1999-10-16 15:52:04 +0000 |
---|---|---|
committer | Manfred Hollstein <manfred@gcc.gnu.org> | 1999-10-16 15:52:04 +0000 |
commit | 28fe2fb748d79a770f9349f35370ffe5627b4601 (patch) | |
tree | c7ee55a0671b55dbe7c3771c5b9307583b0e54df | |
parent | 9c592305f4a1df788432756279e6b8fb3e8f1599 (diff) | |
download | gcc-28fe2fb748d79a770f9349f35370ffe5627b4601.zip gcc-28fe2fb748d79a770f9349f35370ffe5627b4601.tar.gz gcc-28fe2fb748d79a770f9349f35370ffe5627b4601.tar.bz2 |
Makefile.in (LANGUAGES): Omit "proto".
* Makefile.in (LANGUAGES): Omit "proto".
(clean): Remove stale comment about removing unprotoize.c.
From-SVN: r30044
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 553d6b3..7774d79 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +1999-10-16 Manfred Hollstein <mhollstein@cygnus.com> + + * Makefile.in (LANGUAGES): Omit "proto". + (clean): Remove stale comment about removing unprotoize.c. + Sat Oct 16 11:29:14 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * protoize.c (safe_read, safe_write): Avoid the gcc extension of diff --git a/gcc/Makefile.in b/gcc/Makefile.in index f8c8f87..ff57b99 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -40,7 +40,7 @@ SUBDIRS =@subdirs@ # Selection of languages to be made. # This is overridden by configure. CONFIG_LANGUAGES = @all_languages@ -LANGUAGES = c proto gcov$(exeext) $(CONFIG_LANGUAGES) +LANGUAGES = c gcov$(exeext) $(CONFIG_LANGUAGES) # Languages should create dependencies of $(INTL_TARGETS) on generated # sources in Make-lang.in. Example: @@ -2350,10 +2350,6 @@ mostlyclean: $(INTL_MOSTLYCLEAN) lang.mostlyclean # that don't exist in the distribution. INTL_CLEAN = intl.clean clean: mostlyclean $(INTL_CLEAN) lang.clean -# It may not be quite desirable to delete unprotoize.c here, -# but the spec for `make clean' requires it. -# Using unprotoize.c is not quite right in the first place, -# but what better way is there? -rm -f libgcc.a libgcc1.a libgcc1-asm.a libgcc2.a libgcc2.ready -rm -f libgcc1.null -rm -f *.dvi |