Starting to goof around with a Go implementation of Aspen

This commit is contained in:
Dan Buch
2012-12-22 22:51:14 -05:00
parent 5d5ada2dfc
commit bfc7c0cdc6
3 changed files with 94 additions and 0 deletions

16
gotime/smplt/Makefile Normal file
View File

@@ -0,0 +1,16 @@
TARGETS = \
github.com/meatballhat/box-o-sand/gotime/smplt
test: build
go test -x -v $(TARGETS)
build: deps
go install -x $(TARGETS)
deps:
go get -n -x $(TARGETS)
clean:
go clean -x -i $(TARGETS)
.PHONY: test build clean fmt