Change names of Info files so that they have "mit-scheme-" prefix.
authorChris Hanson <org/chris-hanson/cph>
Fri, 23 Feb 2001 04:36:46 +0000 (04:36 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 23 Feb 2001 04:36:46 +0000 (04:36 +0000)
This allows them to appear in a common shared directory and not
conflict with other programs.

v7/doc/imail/Makefile.in
v7/doc/ref-manual/Makefile.in
v7/doc/sos/Makefile.in
v7/doc/user-manual/Makefile.in

index 6521d9d79ff2992d8c66285becf59f30807fa4dd..58702aff7b8d71baea716215a47410ede837dd90 100644 (file)
@@ -1,7 +1,7 @@
 
-# $Id: Makefile.in,v 1.3 2000/12/23 05:14:11 cph Exp $
+# $Id: Makefile.in,v 1.4 2001/02/23 04:36:33 cph Exp $
 #
-# Copyright (c) 2000 Massachusetts Institute of Technology
+# Copyright (c) 2000-2001 Massachusetts Institute of Technology
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License as
@@ -60,11 +60,13 @@ htmldir = @htmldir@
 pdfdir = @pdfdir@
 psdir = @psdir@
 
-all: imail.info imail.html imail.pdf imail.ps
+INFO_TARGET = mit-scheme-imail.info
 
-imail.info: imail.texinfo gfdl.texinfo
-       rm -f imail.info*
-       makeinfo imail.texinfo
+all: $(INFO_TARGET) imail.html imail.pdf imail.ps
+
+$(INFO_TARGET): imail.texinfo gfdl.texinfo
+       rm -f $(INFO_TARGET)*
+       makeinfo --output=$(INFO_TARGET) imail.texinfo
 
 imail.html: imail.texinfo gfdl.texinfo
        rm -f imail*.html
@@ -96,7 +98,7 @@ mostlyclean:
        rm -f imail.dvi
 
 clean: mostlyclean
-       rm -f imail.info* imail*.html imail.pdf imail.ps
+       rm -f $(INFO_TARGET)* imail*.html imail.pdf imail.ps
 
 distclean: clean
 
@@ -105,12 +107,12 @@ maintainer-clean: distclean
 # The install rules depend on macro variables passwd down from the
 # makefile in the top-level documentation directory.
 
-install-info: imail.info
-       -rm -f $(DESTDIR)$(infodir)/imail.info*
-       $(INSTALL_DATA) imail.info* $(DESTDIR)$(infodir)/.
+install-info: $(INFO_TARGET)
+       -rm -f $(DESTDIR)$(infodir)/$(INFO_TARGET)*
+       $(INSTALL_DATA) $(INFO_TARGET)* $(DESTDIR)$(infodir)/.
 
 install-info-gz: install-info
-       gzip -v $(DESTDIR)$(infodir)/imail.info*
+       gzip -v $(DESTDIR)$(infodir)/$(INFO_TARGET)*
 
 install-html: imail.html
        $(INSTALL_DATA) imail*.html $(DESTDIR)$(htmldir)/.
index e2aa96df0343275a32430651f202b56acdd13089..b1ceef585b15426f0c9780481a66ed0d6baa5c9b 100644 (file)
@@ -1,7 +1,7 @@
 
-# $Id: Makefile.in,v 1.3 2000/12/23 05:14:34 cph Exp $
+# $Id: Makefile.in,v 1.4 2001/02/23 04:36:46 cph Exp $
 #
-# Copyright (c) 2000 Massachusetts Institute of Technology
+# Copyright (c) 2000-2001 Massachusetts Institute of Technology
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License as
@@ -60,11 +60,13 @@ htmldir = @htmldir@
 pdfdir = @pdfdir@
 psdir = @psdir@
 
-all: scheme.info scheme.html scheme.pdf scheme.ps
+INFO_TARGET = mit-scheme-ref.info
 
-scheme.info: scheme.texinfo gfdl.texinfo
-       rm -f scheme.info*
-       makeinfo scheme.texinfo
+all: $(INFO_TARGET) scheme.html scheme.pdf scheme.ps
+
+$(INFO_TARGET): scheme.texinfo gfdl.texinfo
+       rm -f $(INFO_TARGET)*
+       makeinfo --output=$(INFO_TARGET) scheme.texinfo
 
 scheme.html: scheme.texinfo gfdl.texinfo
        rm -f scheme*.html
@@ -96,7 +98,7 @@ mostlyclean:
        rm -f scheme.dvi
 
 clean: mostlyclean
-       rm -f scheme.info* scheme*.html scheme.pdf scheme.ps
+       rm -f $(INFO_TARGET)* scheme*.html scheme.pdf scheme.ps
 
 distclean: clean
 
@@ -105,12 +107,12 @@ maintainer-clean: distclean
 # The install rules depend on macro variables passwd down from the
 # makefile in the top-level documentation directory.
 
-install-info: scheme.info
-       -rm -f $(DESTDIR)$(infodir)/scheme.info*
-       $(INSTALL_DATA) scheme.info* $(DESTDIR)$(infodir)/.
+install-info: $(INFO_TARGET)
+       -rm -f $(DESTDIR)$(infodir)/$(INFO_TARGET)*
+       $(INSTALL_DATA) $(INFO_TARGET)* $(DESTDIR)$(infodir)/.
 
 install-info-gz: install-info
-       gzip -v $(DESTDIR)$(infodir)/scheme.info*
+       gzip -v $(DESTDIR)$(infodir)/$(INFO_TARGET)*
 
 install-html: scheme.html
        $(INSTALL_DATA) scheme*.html $(DESTDIR)$(htmldir)/.
index 6900fb31647658e66fc7b3942e66ee31ec9b7fa0..62378955b0652bae76b3abcefcab2a80be09f1a9 100644 (file)
@@ -1,7 +1,7 @@
 
-# $Id: Makefile.in,v 2.3 2000/12/23 05:15:00 cph Exp $
+# $Id: Makefile.in,v 2.4 2001/02/23 04:36:10 cph Exp $
 #
-# Copyright (c) 2000 Massachusetts Institute of Technology
+# Copyright (c) 2000-2001 Massachusetts Institute of Technology
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License as
@@ -60,11 +60,13 @@ htmldir = @htmldir@
 pdfdir = @pdfdir@
 psdir = @psdir@
 
-all: sos.info sos.html sos.pdf sos.ps
+INFO_TARGET = mit-scheme-sos.info
 
-sos.info: sos.texinfo gfdl.texinfo
-       rm -f sos.info*
-       makeinfo sos.texinfo
+all: $(INFO_TARGET) sos.html sos.pdf sos.ps
+
+$(INFO_TARGET): sos.texinfo gfdl.texinfo
+       rm -f $(INFO_TARGET)*
+       makeinfo --output=$(INFO_TARGET) sos.texinfo
 
 sos.html: sos.texinfo gfdl.texinfo
        rm -f sos*.html
@@ -96,7 +98,7 @@ mostlyclean:
        rm -f sos.dvi
 
 clean: mostlyclean
-       rm -f sos.info* sos*.html sos.pdf sos.ps
+       rm -f $(INFO_TARGET)* sos*.html sos.pdf sos.ps
 
 distclean: clean
 
@@ -105,12 +107,12 @@ maintainer-clean: distclean
 # The install rules depend on macro variables passwd down from the
 # makefile in the top-level documentation directory.
 
-install-info: sos.info
-       -rm -f $(DESTDIR)$(infodir)/sos.info*
-       $(INSTALL_DATA) sos.info* $(DESTDIR)$(infodir)/.
+install-info: $(INFO_TARGET)
+       -rm -f $(DESTDIR)$(infodir)/$(INFO_TARGET)*
+       $(INSTALL_DATA) $(INFO_TARGET)* $(DESTDIR)$(infodir)/.
 
 install-info-gz: install-info
-       gzip -v $(DESTDIR)$(infodir)/sos.info*
+       gzip -v $(DESTDIR)$(infodir)/$(INFO_TARGET)*
 
 install-html: sos.html
        $(INSTALL_DATA) sos*.html $(DESTDIR)$(htmldir)/.
index b3bf0d7f979e70d0ca29d6440604c49fed2ae960..301fcba15daa4fc3ecf011351280e088fc95fed0 100644 (file)
@@ -1,7 +1,7 @@
 
-# $Id: Makefile.in,v 1.3 2000/12/23 05:14:46 cph Exp $
+# $Id: Makefile.in,v 1.4 2001/02/23 04:36:24 cph Exp $
 #
-# Copyright (c) 2000 Massachusetts Institute of Technology
+# Copyright (c) 2000-2001 Massachusetts Institute of Technology
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License as
@@ -60,11 +60,13 @@ htmldir = @htmldir@
 pdfdir = @pdfdir@
 psdir = @psdir@
 
-all: user.info user.html user.pdf user.ps
+INFO_TARGET = mit-scheme-user.info
 
-user.info: user.texinfo gfdl.texinfo
-       rm -f user.info*
-       makeinfo user.texinfo
+all: $(INFO_TARGET) user.html user.pdf user.ps
+
+$(INFO_TARGET): user.texinfo gfdl.texinfo
+       rm -f $(INFO_TARGET)*
+       makeinfo --output=$(INFO_TARGET) user.texinfo
 
 user.html: user.texinfo gfdl.texinfo
        rm -f user*.html
@@ -96,7 +98,7 @@ mostlyclean:
        rm -f user.dvi
 
 clean: mostlyclean
-       rm -f user.info* user*.html user.pdf user.ps
+       rm -f $(INFO_TARGET)* user*.html user.pdf user.ps
 
 distclean: clean
 
@@ -105,12 +107,12 @@ maintainer-clean: distclean
 # The install rules depend on macro variables passwd down from the
 # makefile in the top-level documentation directory.
 
-install-info: user.info
-       -rm -f $(DESTDIR)$(infodir)/user.info*
-       $(INSTALL_DATA) user.info* $(DESTDIR)$(infodir)/.
+install-info: $(INFO_TARGET)
+       -rm -f $(DESTDIR)$(infodir)/$(INFO_TARGET)*
+       $(INSTALL_DATA) $(INFO_TARGET)* $(DESTDIR)$(infodir)/.
 
 install-info-gz: install-info
-       gzip -v $(DESTDIR)$(infodir)/user.info*
+       gzip -v $(DESTDIR)$(infodir)/$(INFO_TARGET)*
 
 install-html: user.html
        $(INSTALL_DATA) user*.html $(DESTDIR)$(htmldir)/.