-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
49 lines (40 loc) · 1.34 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
PACKAGES = $(shell go list ./...)
OUTPUT ?= ./ledgerdata-refiner
BUILD_TAGS ?= ledgerdata-refiner
DOCKER_DATABASE ?= fujitsu/refinerdb
DOCKER_DATABASE_FILE ?= DOCKER/postgreSQL/Dockerfile
DOCKER_REFINER ?= fujitsu/refiner
DOCKER_REFINER_FILE ?= DOCKER/app/Dockerfile
CGO_ENABLED ?= 0
#################################################################
# #
# Build ledgerdata refiner #
# #
#################################################################
build:
CGO_ENABLED=$(CGO_ENABLED) go build -tags '$(BUILD_TAGS)' -o $(OUTPUT) .
.PHONY: build
install:
CGO_ENABLED=$(CGO_ENABLED) go install $(BUILD_FLAGS) -tags $(BUILD_TAGS) .
.PHONY: install
clean:
rm -rf $(BUILD_TAGS)
.PHONY: clean
vendor:
CGO_ENABLED=$(CGO_ENABLED) go mod vendor
.PHONY: vendor
#################################################################
# #
# Build DOCKER images #
# #
#################################################################
docker_all:
docker build -t $(DOCKER_DATABASE) -f $(DOCKER_DATABASE_FILE) .
docker build -t $(DOCKER_REFINER) -f $(DOCKER_REFINER_FILE) .
.PHONY: docker_all
docker_refinerdb:
docker build -t $(DOCKER_DATABASE) -f $(DOCKER_DATABASE_FILE) .
.PHONY: docker_refinerdb
docker_refiner:
docker build -t $(DOCKER_REFINER) -f $(DOCKER_REFINER_FILE) .
.PHONY: docker_refiner