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.

32 lines
593 B

CLEAN_GOPATH := $(shell echo $(GOPATH) | tr ":" "\n" | grep -v '^$$' | grep -v $(PWD) | tr "\n" ":")
GOPATH := $(PWD):$(CLEAN_GOPATH)
PACKAGES := \
meatballhat.com/sylvilagus-conntest \
meatballhat.com/sylvilagus-chapter02-hello-world-consumer \
meatballhat.com/sylvilagus-chapter02-hello-world-producer
export GOPATH
test: build
go test $(PACKAGES)
build: deps
go install $(PACKAGES)
deps:
go get $(PACKAGES)
fmt:
go fmt $(PACKAGES)
clean:
rm -v bin/*
12 years ago
find pkg -name '*.a' -exec rm -v {} \;
env:
@echo GOPATH=$(GOPATH)
@echo PACKAGES=$(PACKAGES)
.PHONY: all clean env fmt