##############################################################################
# FILE IDENTIFICATION
# 
#  Name:         Makefile
#  Purpose:      Makefile for the vcs-tree, creates binary executable
#  Author:       Kevin M. Rosenberg
#  Date Started: Sep 2003
#
#  $Id: Makefile 8573 2004-01-29 23:30:50Z 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)
