Skip to content

Commit b9f99c8

Browse files
author
Lars Maier
authored
Merge pull request #391 from arangodb/makefile
Check variables before codegen.
2 parents c47dc1c + 04ef3a7 commit b9f99c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,17 @@ ARANGOSYNCTESTCTRLBINNAME := $(PROJECT)_sync_test_ctrl
121121
ARANGOSYNCTESTCTRLBIN := $(BINDIR)/$(ARANGOSYNCTESTCTRLBINNAME)
122122

123123
.PHONY: all
124-
all: build
124+
all: check-vars build
125125

126126
.PHONY: allall
127-
allall: verify-generated build
127+
allall: check-vars verify-generated build
128128

129129
#
130130
# Tip: Run `eval $(minikube docker-env)` before calling make if you're developing on minikube.
131131
#
132132

133133
.PHONY: build
134-
build: check-vars docker manifests
134+
build: docker manifests
135135

136136
.PHONY: clean
137137
clean:

0 commit comments

Comments
 (0)