Include scsh paper in the distribution.
This commit is contained in:
parent
45305e7555
commit
7bd0a03099
23
Makefile.in
23
Makefile.in
|
@ -364,6 +364,7 @@ inst-doc:
|
||||||
do $(INSTALL_DATA) $$f $(LIB)/doc/s48-manual/html/; \
|
do $(INSTALL_DATA) $$f $(LIB)/doc/s48-manual/html/; \
|
||||||
done && \
|
done && \
|
||||||
for f in $(srcdir)/doc/scsh-manual/*.tex \
|
for f in $(srcdir)/doc/scsh-manual/*.tex \
|
||||||
|
$(srcdir)/doc/scsh-manual/*.sty \
|
||||||
$(srcdir)/doc/scsh-manual/*.dvi \
|
$(srcdir)/doc/scsh-manual/*.dvi \
|
||||||
$(srcdir)/doc/scsh-manual/*.ps; \
|
$(srcdir)/doc/scsh-manual/*.ps; \
|
||||||
do $(INSTALL_DATA) $$f $(LIB)/doc/scsh-manual/; \
|
do $(INSTALL_DATA) $$f $(LIB)/doc/scsh-manual/; \
|
||||||
|
@ -372,8 +373,19 @@ inst-doc:
|
||||||
$(srcdir)/doc/scsh-manual/html/*.gif \
|
$(srcdir)/doc/scsh-manual/html/*.gif \
|
||||||
$(srcdir)/doc/scsh-manual/html/*.css; \
|
$(srcdir)/doc/scsh-manual/html/*.css; \
|
||||||
do $(INSTALL_DATA) $$f $(htmldir)/; \
|
do $(INSTALL_DATA) $$f $(htmldir)/; \
|
||||||
|
done && \
|
||||||
|
for f in $(srcdir)/doc/scsh-paper/*.tex \
|
||||||
|
$(srcdir)/doc/scsh-paper/*.sty \
|
||||||
|
$(srcdir)/doc/scsh-paper/*.dvi \
|
||||||
|
$(srcdir)/doc/scsh-paper/*.ps; \
|
||||||
|
do $(INSTALL_DATA) $$f $(LIB)/doc/scsh-paper/; \
|
||||||
|
done && \
|
||||||
|
for f in $(srcdir)/doc/scsh-paper/html/*.html \
|
||||||
|
$(srcdir)/doc/scsh-paper/html/*.css; \
|
||||||
|
do $(INSTALL_DATA) $$f $(LIB)/doc/scsh-paper/html; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
inst-script:
|
inst-script:
|
||||||
script=$(bindir)/$(RUNNABLE) && \
|
script=$(bindir)/$(RUNNABLE) && \
|
||||||
echo '#!/bin/sh' >$$script && \
|
echo '#!/bin/sh' >$$script && \
|
||||||
|
@ -401,7 +413,7 @@ dirs:
|
||||||
done && \
|
done && \
|
||||||
for dir in \
|
for dir in \
|
||||||
rts env big opt misc link scsh doc/scsh-manual \
|
rts env big opt misc link scsh doc/scsh-manual \
|
||||||
doc/s48-manual/html cig; do \
|
doc/s48-manual/html doc/scsh-paper/html cig; do \
|
||||||
{ mkdir -p $(LIB)/$$dir && [ -w $(LIB)/$$dir ]; } || { \
|
{ mkdir -p $(LIB)/$$dir && [ -w $(LIB)/$$dir ]; } || { \
|
||||||
echo "$(LIB)/$$dir not a writable directory" >&2; \
|
echo "$(LIB)/$$dir not a writable directory" >&2; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
@ -481,11 +493,16 @@ DISTFILES = README COPYING INSTALL RELEASE configure config.sub config.guess \
|
||||||
scsh/*.scm.in scsh/*/Makefile.inc \
|
scsh/*.scm.in scsh/*/Makefile.inc \
|
||||||
cig/*.scm cig/*.[ch] \
|
cig/*.scm cig/*.[ch] \
|
||||||
doc/scsh.man \
|
doc/scsh.man \
|
||||||
doc/scsh-manual/*.tex doc/scsh-manual/man.ps \
|
doc/scsh-manual/*.tex doc/scsh-manual/*.sty \
|
||||||
|
doc/scsh-manual/man.ps \
|
||||||
doc/scsh-manual/man.dvi doc/scsh-manual/Makefile \
|
doc/scsh-manual/man.dvi doc/scsh-manual/Makefile \
|
||||||
doc/scsh-manual/THANKS doc/scsh-manual/html/*.html \
|
doc/scsh-manual/THANKS doc/scsh-manual/html/*.html \
|
||||||
doc/scsh-manual/html/*.gif doc/scsh-manual/html/*.css \
|
doc/scsh-manual/html/*.gif doc/scsh-manual/html/*.css \
|
||||||
doc/src/manual/*.html
|
doc/src/manual/*.html \
|
||||||
|
doc/scsh-paper/*.sty doc/scsh-paper/*.tex \
|
||||||
|
doc/scsh-paper/mitlogo.ps doc/scsh-paper/scsh-paper.ps \
|
||||||
|
doc/scsh-paper/scsh-paper.dvi \
|
||||||
|
doc/scsh-paper/html/*.html doc/scsh-paper/html/*.css
|
||||||
|
|
||||||
|
|
||||||
distname = $(RUNNABLE)-0.`cat build/minor-version-number`
|
distname = $(RUNNABLE)-0.`cat build/minor-version-number`
|
||||||
|
|
6
README
6
README
|
@ -8,12 +8,12 @@ the version number in your message.
|
||||||
|
|
||||||
Installation instructions in file INSTALL.
|
Installation instructions in file INSTALL.
|
||||||
|
|
||||||
A scsh manual is in file doc/scsh-manual{/*.tex,.ps}.
|
A scsh manual is in directory doc/scsh-manual/.
|
||||||
A scsh paper is in file doc/scsh-paper.{tex,ps}.
|
A scsh paper is in directory doc/scsh-paper/.
|
||||||
A scsh quick reference is in file doc/cheat.txt.
|
A scsh quick reference is in file doc/cheat.txt.
|
||||||
|
|
||||||
Send mail to scsh-request@zurich.ai.mit.edu to be put on a
|
Send mail to scsh-request@zurich.ai.mit.edu to be put on a
|
||||||
mailing list for announcements, discussion, bug reports, and bug
|
mailing list for announcements, discussion, bug reports, and bug
|
||||||
fixes.
|
fixes.
|
||||||
|
|
||||||
A road-map of the source tree is also in the doc directory.
|
|
||||||
|
|
Loading…
Reference in New Issue