############################################################################## # FILE IDENTIFICATION # # Name: Makefile # Purpose: Makefile for the vcs-tree, creates binary executable # Author: Kevin M. Rosenberg # Date Started: Sep 2003 # # $Id: Makefile 7061 2003-09-07 06:34:45Z kevin $ ############################################################################## pkg :=vcs-tree sources :=$(pkg).asd main.lisp loader.lisp package.lisp kmrcl-excerpt.lisp $(pkg): $(sources) $(MAKE) clean sbcl --load "$(pkg).asd" --eval "(asdf:oos 'asdf:load-op '$(pkg))" --eval "(sb-ext:quit :unix-status 0)" clean: rm -f *.fasl $(pkg)