go-translator/Makefile
2018-04-03 08:45:48 +02:00

15 строки
319 Б
Makefile

TS=$(shell date -u '+%Y/%m/%d %H:%M:%S')
all: test
packages:
@echo $(TS) Installing Go packages ...
@go get -u github.com/andygeiss/assert
@go get -u github.com/andygeiss/esp32-controller
@go get -u github.com/andygeiss/log
@echo $(TS) Done.
test:
@echo $(TS) Testing ...
@go test -v ./...
@echo $(TS) Done.