go-translator/Makefile
2018-04-10 15:16:27 +02:00

15 строки
326 Б
Makefile

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