4af74192f7481fd807fced5e26fb9cccdafe63f2
[vcs-tree.git] / Makefile
1 ##############################################################################
2 # FILE IDENTIFICATION
3
4 #  Name:         Makefile
5 #  Purpose:      Makefile for the vcs-tree, creates binary executable
6 #  Author:       Kevin M. Rosenberg
7 #  Date Started: Sep 2003
8 #
9 #  $Id$
10 ##############################################################################
11
12
13 pkg     :=vcs-tree
14 sources :=$(pkg).asd main.lisp loader.lisp package.lisp kmrcl-excerpt.lisp
15
16 $(pkg): $(sources)
17         $(MAKE) clean
18         sbcl --core a --load "$(pkg).asd" --eval "(asdf:oos 'asdf:load-op '$(pkg))" --eval "(sb-ext:quit :unix-status 0)"
19
20 clean:
21         rm -f *.fasl $(pkg)