We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e5f649 commit a4b1748Copy full SHA for a4b1748
examples/rules.mk
@@ -192,9 +192,7 @@ endif
192
# get depenecies
193
.PHONY: get-deps
194
get-deps:
195
- ifdef DEPS_SUBMODULES
196
$(PYTHON) $(TOP)/tools/get_deps.py $(DEPS_SUBMODULES)
197
- endif
198
199
.PHONY: size
200
size: $(BUILD)/$(PROJECT).elf
tools/get_deps.py
@@ -104,9 +104,6 @@ def get_a_dep(d):
104
105
106
if __name__ == "__main__":
107
- if len(sys.argv) <= 1:
108
- sys.exit(1)
109
-
110
status = 0
111
deps = list(deps_mandatory.keys()) + sys.argv[1:]
112
with Pool() as pool:
0 commit comments