#!/bin/bash

eval_flags=""

for cfile in "$@"
do
	eval_flags="$eval_flags --eval '(compile-file \"$cfile\")'"
done

eval \
"sbcl --noinform --end-runtime-options \
  --noprint --no-sysinit --no-userinit \
  $eval_flags \
  --eval '(quit)' \
  --end-toplevel-options"

