This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
tacitus/Makefile

42 lines
997 B
Makefile

BUILD_DIR = build
TACITUS_FILES = $(wildcard *.go)
GDAX_FILES = $(wildcard gdax/*.go)
GDAX_WEBSOCKET_FILES = $(wildcard gdax/websocket/*.go)
HTTP_FILES = $(wildcard http/*.go)
OPS_FILES = $(wildcard ops/*.go)
OSUTIL_FILES = $(wildcard osutil/*.go)
POSTGRES_FILES = $(wildcard postgres/*.go)
WATCHER = $(BUILD_DIR)/tacitus-watcher
WEBAPP = $(BUILD_DIR)/tacitus-webapp
all: watcher webapp
watcher: $(WATCHER)
webapp: $(WEBAPP)
fmt: $(TACITUS_FILES) $(OSUTIL_FILES) $(POSTGRES_FILES) $(OPS_FILES) \
$(GDAX_FILES) $(GDAX_WEBSOCKET_FILES) $(HTTP_FILES)
go fmt $(TACITUS_FILES)
go fmt $(OSUTIL_FILES)
go fmt $(POSTGRES_FILES)
go fmt $(OPS_FILES)
go fmt $(GDAX_FILES)
go fmt $(GDAX_WEBSOCKET_FILES)
go fmt $(HTTP_FILES)
$(WEBAPP):
go build -o $(WEBAPP) cmd/webapp/main.go
$(WATCHER): $(TACITUS_FILES) $(OSUTIL_FILES) $(POSTGRES_FILES) \
$(GDAX_FILES) $(GDAX_WEBSOCKET_FILES)
go build -o $(WATCHER) cmd/watcher/main.go
clean:
-rm -f $(BUILD_DIR)/*
.PHONEY: clean webapp watcher fmt