head     1.11;
access   ;
symbols  ;
locks    ; strict;
comment  @# @;


1.11
date     95.02.17.12.08.09;  author wlott;  state Exp;
branches ;
next     1.10;

1.10
date     94.11.06.22.13.24;  author ram;  state Exp;
branches ;
next     1.9;

1.9
date     94.11.04.15.46.53;  author ram;  state Exp;
branches ;
next     1.8;

1.8
date     94.03.17.17.34.25;  author ram;  state Exp;
branches ;
next     1.7;

1.7
date     93.08.16.18.45.54;  author wlott;  state Exp;
branches ;
next     1.6;

1.6
date     93.08.15.14.41.56;  author wlott;  state Exp;
branches ;
next     1.5;

1.5
date     93.08.15.14.40.00;  author wlott;  state Exp;
branches ;
next     1.4;

1.4
date     92.09.08.22.28.25;  author wlott;  state Exp;
branches ;
next     1.3;

1.3
date     92.05.27.18.13.12;  author wlott;  state Exp;
branches ;
next     1.2;

1.2
date     91.11.17.13.58.14;  author wlott;  state Exp;
branches ;
next     1.1;

1.1
date     91.03.08.19.40.05;  author ram;  state Exp;
branches ;
next     ;


desc
@Script to install the core in the current working directory and alpha
target area into the alpha SUP release area.
@


1.11
log
@Install internals.h and moved the place things get installed.
Also install the startup code as cmucl
@
text
@#!/bin/csh -fx
#
# $Header: inst-lisp,v 1.10 94/11/06 22:13:24 wlott Locked $
#
# Utility for installing CMU CL systems in the AFS release area.
#

if ($#argv > 0) then
	set subdir = $argv[1]
else
	set subdir = alpha
endif

if ($#argv > 1) then
	set destver = $argv[2]
else
	set destver = alpha
endif

set src = /afs/cs/project/clisp/build/@@sys/$subdir
set dst = /afs/cs/project/clisp/releases/${destver}/@@sys

rm -f $dst/cmucl
rm -f $dst/lisp.core
rm -f $dst/site-init.*
rm -f $dst/motifd
rm -f $dst/spell-dictionary.bin
rm -f $dst/internals.h

cp -p $src/lisp/lisp $dst/cmucl
cp -p $src/lisp/internals.h $dst
cp -p lisp.core $dst/lisp.core
cp -p $src/code/cmu-site.*f $dst/site-init.fasl
cp -p $src/motif/server/motifd $dst
cp -p $src/hemlock/spell-dictionary.bin $dst
@


1.10
log
@rename cmu-site-*f to site-init.fasl when copying (so that it can have the name
across all systems so that the lib/directory looks identical (modulo @@sys
links.)
@
text
@d3 1
a3 1
# $Header: /afs/cs/project/clisp-3/alphas/@@sys/RCS/inst-lisp,v 1.9 1994/11/04 15:46:53 ram Exp ram $
d21 1
a21 1
set dst = /afs/cs/project/clisp-3/${destver}s/@@sys
d23 1
a23 1
rm -f $dst/lisp
d28 1
d30 2
a31 1
cp -p $src/lisp/lisp $dst/lisp
@


1.9
log
@install spell-dictionary.bin too.
@
text
@d3 1
a3 1
# $Header: /users/ram/RCS/inst-lisp,v 1.8 1994/03/17 17:34:25 ram Exp ram $
d31 1
a31 1
cp -p $src/code/cmu-site.*f $dst
@


1.8
log
@Allow separate specification of source and destination releases.
@
text
@d3 1
a3 1
# $Header: inst-lisp,v 1.7 93/08/16 18:45:54 ram Locked $
d5 1
a5 1
# Utility for installing an alpha core.
d27 1
d33 1
@


1.7
log
@Separate the 4 rm's so that if the wildcards don't match in one, they don't
all get blown off.
@
text
@d3 1
a3 1
# $Header: inst-lisp,v 1.6 93/08/15 14:41:56 wlott Locked $
d8 1
a8 1
if ($#argv) then
d14 6
d21 1
a21 1
set dst = /afs/cs/project/clisp-3/alphas/@@sys
@


1.6
log
@Copy cmu-site as cmu-site instead of site-init.
@
text
@d3 1
a3 1
# $Header: inst-lisp,v 1.5 93/08/15 14:40:00 wlott Locked $
d17 5
a21 1
rm -f $dst/lisp $dst/lisp.core $dst/site-init.* $dst/motifd
@


1.5
log
@Also copy site-init and motifd into the release area.
@
text
@d3 1
a3 1
# $Header: inst-lisp,v 1.4 92/09/08 22:28:25 wlott Locked $
d20 1
a20 2
set siteinit = "$src/code/cmu-site.*f"
cp -p $siteinit $dst/site-init.$siteinit:e
@


1.4
log
@Changed to use new startup code.
@
text
@d3 1
a3 1
# $Header: inst-lisp,v 1.3 92/05/27 18:13:12 wlott Locked $
d17 1
a17 1
rm -f $dst/lisp $dst/lisp.core
d20 3
@


1.3
log
@Changed to install the alpha core under $clisp-3 instead of directly in the
release area.
@
text
@d3 1
a3 1
# $Header$
d18 1
a18 1
cp -p $src/ldb/ldb $dst/lisp
@


1.2
log
@Changed to new pathnames.
@
text
@d2 5
d15 1
a15 1
set dst = /afs/cs/misc/cmucl/@@sys/alpha
d17 3
a19 3
rm -f $dst/bin/lisp $dst/lib/lisp.core
cp -p $src/ldb/ldb $dst/bin/lisp
cp -p lisp.core $dst/lib/lisp.core
@


1.1
log
@Initial revision
@
text
@d9 1
a9 1
set src = /afs/cs/project/clisp/new-compiler/@@sys/$subdir
@
