You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/conway/Makefile

22 lines
341 B

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)
clean:
go clean -x -i $(TARGETS)
test:
go test -x -v -test.parallel=4 $(LIBS)
deps:
go get -x $(TARGETS)
.PHONY: all build clean deps test