diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-19 13:06:11 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-19 13:06:11 -0400 |
commit | 96a881beacf8fee0e4183d2a52ea79e6e32b3501 (patch) | |
tree | 286359a00173bbb29c43340f767c9193b2d81ba5 | |
parent | 00a0f4dbede037d85855e0f4bdea3861e1cf430b (diff) | |
download | gcc-96a881beacf8fee0e4183d2a52ea79e6e32b3501.zip gcc-96a881beacf8fee0e4183d2a52ea79e6e32b3501.tar.gz gcc-96a881beacf8fee0e4183d2a52ea79e6e32b3501.tar.bz2 |
Make options.h and specs.h.
Change realclear to maintainer-clean.
From-SVN: r10003
-rw-r--r-- | gcc/config/msdos/configur.bat | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/config/msdos/configur.bat b/gcc/config/msdos/configur.bat index f8a9958..81aadc4 100644 --- a/gcc/config/msdos/configur.bat +++ b/gcc/config/msdos/configur.bat @@ -26,7 +26,15 @@ set LANG=%LANG% c++.& echo lang.mostlyclean: %LANG% | sed "s/&/mostlyclean/g" >> Makefile
echo lang.clean: %LANG% | sed "s/&/clean/g" >> Makefile
echo lang.distclean: %LANG% | sed "s/&/distclean/g" >> Makefile
-echo lang.realclean: %LANG% | sed "s/&/realclean/g" >> Makefile
+echo lang.maintrainer-clean: %LANG% | sed "s/&/maintainer-clean/g" >> Makefile
+echo /* options.h */ > options.h +if exist cp\lang-options.h echo #include "cp/lang-options.h" >> options.h
+if exist ada\lang-options.h echo #include "ada/lang-options.h" >> options.h
+if exist f\lang-options.h echo #include "f/lang-options.h" >> options.h
+echo /* specs.h */ > specs.h
+if exist cp\lang-specs.h echo #include "cp/lang-specs.h" >> specs.h
+if exist ada\lang-specs.h echo #include "ada/lang-specs.h" >> specs.h
+if exist f\lang-specs.h echo #include "f/lang-specs.h" >> specs.h
echo #define MULTILIB_SELECT ". ;" > multilib.h1
update multilib.h1 multilib.h
|