2009-05-05 19:51:13 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2009-07-10 00:17:39 -04:00
|
|
|
cp flisp.boot flisp.boot.bak
|
2009-05-05 19:51:13 -04:00
|
|
|
|
|
|
|
echo "Creating stage 0 boot file..."
|
2009-07-20 00:57:17 -04:00
|
|
|
#../../branches/interpreter/femtolisp/flisp mkboot0.lsp system.lsp compiler.lsp > flisp.boot.new
|
2009-07-10 00:17:39 -04:00
|
|
|
./flisp mkboot0.lsp system.lsp compiler.lsp > flisp.boot.new
|
|
|
|
mv flisp.boot.new flisp.boot
|
2009-05-05 19:51:13 -04:00
|
|
|
|
|
|
|
echo "Creating stage 1 boot file..."
|
|
|
|
./flisp mkboot1.lsp
|
|
|
|
|
|
|
|
echo "Testing..."
|
|
|
|
make test
|