24 lines
311 B
Makefile
24 lines
311 B
Makefile
|
LIBS := \
|
||
|
github.com/meatballhat/box-o-sand/conway/go
|
||
|
TARGETS := \
|
||
|
$(LIBS) \
|
||
|
github.com/meatballhat/box-o-sand/conway/go/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
|