Attempting to collapse package up a level

since I'm not feeling like I'm going to tackle this in another
language... yet.
This commit is contained in:
2012-12-11 18:28:10 -05:00
parent f22abc0430
commit df55a809f1
4 changed files with 4 additions and 4 deletions

23
conway/Makefile Normal file
View File

@@ -0,0 +1,23 @@
LIBS := \
github.com/meatballhat/box-o-sand/conway
TARGETS := \
$(LIBS) \
github.com/meatballhat/box-o-sand/conway/conways-game-of-life
all: deps build
build: test
go install -x $(TARGETS)
test:
go test -x -v -test.parallel=4 $(LIBS)
deps:
go get -x $(TARGETS)
.PHONY: all build test deps