Skip to content

Commit 6399791

Browse files
committed
fix(makefile): regenerate .api.deps less often
It took too long to do it, so the 'MAKO_LIB_FILES' dependency was removed. It can be re-added if needed.
1 parent 79879da commit 6399791

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ $(PYTHON): $(VENV)
5353

5454
$(MAKO_RENDER): $(PYTHON)
5555

56-
$(API_DEPS): $(API_DEPS_TPL) $(MAKO_STANDARD_DEPENDENCIES) $(API_LIST)
56+
# Explicitly NOT depending on $(MAKO_LIB_FILES), as it's quite stable and now takes 'too long' thanks
57+
# to a URL get call to the google discovery service
58+
$(API_DEPS): $(API_DEPS_TPL) $(API_SHARED_INFO) $(MAKO_RENDER) $(API_LIST)
5759
$(MAKO) -io $(API_DEPS_TPL)=$@ --data-files $(API_SHARED_INFO) $(API_LIST)
5860

5961
api-deps: $(API_DEPS)

0 commit comments

Comments
 (0)