# compile.sh -- shell functions pertaining to recompilation. Now mostly # done by lisp code in clbuild.lisp. # # Part of clbuild by Luke Gorrie and contributors. recompile() { if test x"$1" = x--dump; then dump="--dump t" shift else dump="" fi concatenated_args="$@" if test -z "$concatenated_args"; then concatenated_args="$main_projects" fi cd "$BASE" lisp_trampoline "$build_options" \ recompile-systems \ $dump \ "$concatenated_args" } dumpcore() { rm -f "$BASE"/.core-is-stale rm -f "$BASE"/monster.core recompile --dump "$@" }