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.

19 lines
287 B

LIBS := \
github.com/meatballhat/box-o-sand/sltcpsrv
TARGETS := \
$(LIBS) \
github.com/meatballhat/box-o-sand/sltcpsrv/syslog-tcp-server
all: build test
build: deps
go install -x $(TARGETS)
test:
go test -x -v $(LIBS)
deps:
go get -x $(TARGETS)
.PHONY: all build deps test