X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=Makefile;h=4972536876f264a792bbdf5d20be2b98ae7f1f36;hb=5745fb41b4a6d8d2fc2915fb3d60f9d4072f2b0d;hp=e963a2520dce74e28e86065b54af56b072d03d7d;hpb=5d66ace14bf1d859d364e0004335d1a6800e0d40;p=vcs-tree.git diff --git a/Makefile b/Makefile index e963a25..4972536 100644 --- a/Makefile +++ b/Makefile @@ -6,16 +6,16 @@ # Author: Kevin M. Rosenberg # Date Started: Sep 2003 # -# $Id: Makefile 7061 2003-09-07 06:34:45Z kevin $ +# $Id$ ############################################################################## pkg :=vcs-tree -sources :=$(pkg).asd main.lisp loader.lisp package.lisp kmrcl-excerpt.lisp +sources :=$(pkg).asd $(wildcard *.lisp) -$(pkg): $(sources) +_$(pkg): $(sources) $(MAKE) clean - sbcl --load "$(pkg).asd" --eval "(asdf:oos 'asdf:load-op '$(pkg))" --eval "(sb-ext:quit :unix-status 0)" + 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)" clean: - rm -f *.fasl $(pkg) + rm -f *.fasl _$(pkg)