box-o-sand/sltcpsrv/Makefile

19 lines
287 B
Makefile
Raw Normal View History

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