Update domain name to kpe.io
[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 ##############################################################################
10
11
12 pkg     :=vcs-tree
13 sources :=$(pkg).asd $(wildcard *.lisp)
14
15 _$(pkg): $(sources)
16         $(MAKE) clean
17         XDG_CACHE_HOME=/root HOME=/ /usr/bin/sbcl --sysinit /dev/null --userinit /dev/null --eval "(require 'asdf)" --load vcs-tree.asd --eval "(asdf:operate 'asdf::load-op 'vcs-tree)" --eval "(vcs-tree-system:save-executable \"_vcs-tree\")" --eval "(sb-ext:quit :unix-status 0)"
18
19 clean:
20         rm -f *.fasl _$(pkg)