diff options
author | Doug Evans <dje@gnu.org> | 1995-12-14 20:12:12 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1995-12-14 20:12:12 +0000 |
commit | 67446ffe25571ec1729304f11b95e72aa2da511e (patch) | |
tree | 3dad89b5d11e781684d8207acf0f233f0e83b771 | |
parent | 32ebaaf09d98fc4084be22a574f1487aa2475e64 (diff) | |
download | gcc-67446ffe25571ec1729304f11b95e72aa2da511e.zip gcc-67446ffe25571ec1729304f11b95e72aa2da511e.tar.gz gcc-67446ffe25571ec1729304f11b95e72aa2da511e.tar.bz2 |
* Makefile.in (distclean): Delete float.h
From-SVN: r10718
-rw-r--r-- | gcc/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 139e856..7c67979 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -303,6 +303,7 @@ LIB1FUNCS_EXTRA = LIB2FUNCS_EXTRA = # Default float.h source to use for cross-compiler. +# This is overidden by configure. CROSS_FLOAT_H=float.h-cross # Program to convert libraries. @@ -709,6 +710,8 @@ float.h-nat: enquire mv tmp-float.h float.h-nat # Create a dummy float.h source for a cross-compiler. +# ??? This isn't used anymore. Should we create config/float-unkn.h +# and make that the default float_format in configure? float.h-cross: echo "#error float.h values not known for cross-compiler" > t-float.h-cross mv t-float.h-cross float.h-cross @@ -1984,6 +1987,7 @@ distclean: clean bytecode.distclean lang.distclean -rm -f objc-parse.output -rm -f c-parse.output -rm -f *.asm + -rm -f float.h # Delete anything likely to be found in the source directory # that shouldn't be in the distribution. |