Archiving a bunch of old stuff
This commit is contained in:
18
oldstuff/sylvilagus/go/Makefile
Normal file
18
oldstuff/sylvilagus/go/Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
REPO_BASE := github.com/meatballhat/box-o-sand/sylvilagus/go
|
||||
PACKAGES := \
|
||||
$(REPO_BASE)/sylvilagus-conntest \
|
||||
$(REPO_BASE)/sylvilagus-ch02-hello-world-consumer \
|
||||
$(REPO_BASE)/sylvilagus-ch02-hello-world-producer \
|
||||
$(REPO_BASE)/sylvilagus-ch04-rpc-server \
|
||||
$(REPO_BASE)/sylvilagus-ch04-rpc-client
|
||||
|
||||
test: build
|
||||
go test -x -v $(PACKAGES)
|
||||
|
||||
build: deps
|
||||
go install -x $(PACKAGES)
|
||||
|
||||
deps:
|
||||
go get -x $(PACKAGES)
|
||||
|
||||
.PHONY: test build deps
|
Reference in New Issue
Block a user