install script updates

This commit is contained in:
vaclavt 2022-01-27 23:55:56 +01:00
parent 1894371580
commit 53ce64c763
1 changed files with 4 additions and 3 deletions

View File

@ -1,9 +1,10 @@
#!/bin/sh
echo "cleaning"
cmake --build ./build --config Release --target clean -j 4 --
cmake -DCMAKE_BUILD_TYPE=Release .
cmake --build ./ --target clean -j 4 --
echo "building ml"
cmake --build ./build --config Release --target all -j 4 --
cmake --build ./ --target all -j 4 --
echo ""
echo "copying lsp files"
@ -12,7 +13,7 @@ cp stdlib/*.lsp /usr/local/var/mlisp/
echo "copying doc files"
cp doc/*.md /usr/local/var/mlisp/
echo "copying ml file"
cp ./build/ml /usr/local/bin/ml
mv ./ml /usr/local/bin/ml
echo ""
echo "if syntax has changed you may use"