Trying out a version that uses golog

as well as touching up the Makefiles to set SHELL
This commit is contained in:
2013-07-07 23:07:38 -04:00
parent 7ef177a38e
commit 38327558d6
4 changed files with 65 additions and 8 deletions

View File

@@ -1,7 +1,15 @@
SHELL := /bin/bash
run-crispy: crispy/crispy
$^
run-sirgoldenvoncrispywhite: sirgoldenvoncrispywhite/sirgoldenvoncrispywhite
$^
crispy/crispy: crispy/main.go
pushd crispy && go build -v -x . ; popd
.PHONY: run-crispy
sirgoldenvoncrispywhite/sirgoldenvoncrispywhite: sirgoldenvoncrispywhite/main.go
pushd sirgoldenvoncrispywhite && go build -v -x . ; popd
.PHONY: run-crispy run-sirgoldenvoncrispywhite