diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2000-11-22 08:32:26 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-11-22 08:32:26 +0000 |
commit | d1209685fa061309f5f7ad73eb4fb5ef30b402d0 (patch) | |
tree | 2a1d2ae9f91d97732b595daf55f5397c013d1d7b /gcc/Makefile.in | |
parent | c01a508e4e8a795f63348accdd04483c9d67197e (diff) | |
download | gcc-d1209685fa061309f5f7ad73eb4fb5ef30b402d0.zip gcc-d1209685fa061309f5f7ad73eb4fb5ef30b402d0.tar.gz gcc-d1209685fa061309f5f7ad73eb4fb5ef30b402d0.tar.bz2 |
Makefile.in, [...]: Expunge remaining traces of facility for running MD files through C preprocessor.
gcc:
* Makefile.in, config.gcc, configure.in: Expunge remaining
traces of facility for running MD files through C preprocessor.
libiberty:
* aclocal.m4 (LIB_AC_PROG_CC): Moved here from configure.in.
(AC_DEFINE_NOAUTOHEADER): New - work around bug in autoheader.
* configure.in: Call AC_C_INLINE and AC_C_CONST. Use three
argument form of AC_DEFINE in dummy definitions block. Use
AC_DEFINE_NOAUTOHEADER for real definitions of things defined
in dummy block. Preload cache variables instead of bypassing
tests, where possible.
* acconfig.h: Removed.
* xmalloc.c (xmalloc_failed): New function, does error
reporting on failed allocation.
(xmalloc, xcalloc, xrealloc): Use it.
* libiberty.h: Move #includes to top. Prototype xmalloc_failed.
From-SVN: r37650
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 10ad105..fd32ef4 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -495,10 +495,6 @@ GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PART # Directory to link to, when using the target `maketest'. DIR = ../gcc -# Guaranteed to not exist when not passing md through cpp. -# This value is overridden directly by configure. -MD_FILE = md-cpp-not-used - # Flags to use when cross-building GCC. # Prefix to apply to names of object files when using them # to run on the machine we are compiling on. @@ -1647,12 +1643,6 @@ s-genrtl: gengenrtl $(srcdir)/move-if-change $(RTL_BASE_H) # about the target machine. They do depend on config.h itself, # since that describes the host machine. -# Pass the md file through cpp if the target requests it. -$(MD_FILE): $(MD_DEPS) - rm -f $@ - $(MD_CPP) $(MD_CPPFLAGS) $(md_file) | sed 's/^# /; /g' > tmp-$@ - mv tmp-$@ $@ - gensupport.o: gensupport.c $(RTL_H) $(OBSTACK_H) system.h errors.h gensupport.h $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gensupport.c @@ -2237,9 +2227,6 @@ clean: mostlyclean $(INTL_CLEAN) lang.clean -rm -rf libgcc -rm -f *.dvi -rm -f */*.dvi - -if [ -f md.pre-cpp ]; then \ - rm -f md ; \ - fi # Delete the include directory. -rm -rf include # Delete files used by the "multilib" facility (including libgcc subdirs). @@ -2259,7 +2246,7 @@ clean: mostlyclean $(INTL_CLEAN) lang.clean INTL_DISTCLEAN = intl.distclean distclean: clean $(INTL_DISTCLEAN) lang.distclean -rm -f tm.h tm_p.h config.h auto-host.h auto-build.h tconfig.h hconfig.h - -rm -f md cstamp-h + -rm -f cstamp-h -rm -f config.status config.run config.cache config.bak -rm -f Make-lang Make-hooks Make-host Make-target -rm -f Makefile specs.h options.h gencheck.h *.oaux |