diff --git a/Makefile b/Makefile index 8ad6b9c..6452c5f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ FMTFLAGS = -l -w -s +GETFLAGS = -u BUILD_DIR = build WATCHER_FILES = $(wildcard cmd/watcher/*.go) @@ -21,6 +22,15 @@ watcher: $(WATCHER) webapp: $(WEBAPP) +get: + go get $(GETFLAGS) github.com/kcotugno/tacitus + go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/interval + go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/watcher + go get $(GETFLAGS) github.com/kcotugno/tacitus/cmd/webapp + go get $(GETFLAGS) github.com/kcotugno/tacitus/gdax + go get $(GETFLAGS) github.com/kcotugno/tacitus/gdax/websocket + go get $(GETFLAGS) github.com/kcotugno/tacitus/postgres + fmt: $(TACITUS_FILES) $(OSUTIL_FILES) $(POSTGRES_FILES) $(OPS_FILES) \ $(GDAX_FILES) $(GDAX_WEBSOCKET_FILES) $(HTTP_FILES) gofmt $(FMTFLAGS) $(TACITUS_FILES)