You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+24-13Lines changed: 24 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,6 @@ ifdef DOCKER_COMPOSE
19
19
DOCKER_BIN:=$(DOCKER_COMPOSE)
20
20
else ifdef DOCKER_TOOL
21
21
DOCKER_BIN:=$(DOCKER_TOOL) compose
22
-
else
23
-
$(error ERROR: Can't find docker-compose nor docker tool. Please, install docker and try again)
24
22
endif# DOCKER_* checks
25
23
endif# DOCKER_BIN
26
24
@@ -64,14 +62,15 @@ help:
64
62
list:
65
63
@echo ""
66
64
@echo "Supported top-level targets:"
67
-
@echo "\t * help - shows short basic help"
68
-
@echo "\t * list - this output"
65
+
@echo "\t * help - shows short basic help"
66
+
@echo "\t * list - this output"
69
67
@echo "\t * docker-shell - start docker container with shell inside to work on IronOS with all tools needed"
70
68
@echo "\t * docker-build - compile builds of IronOS for supported models inside docker container and place them to \"scripts/ci/artefacts/\""
71
69
@echo "\t * docker-clean - delete created docker container (but not pre-downloaded data for it)"
72
-
@echo "\t * docs - generate \"site\"/ directory with documentation in a form of static html files using ReadTheDocs framework and $(MKDOCS_YML) local config file"
73
-
@echo "\t * docs-deploy - generate & deploy docs online to gh-pages branch of current github repo"
74
-
@echo "\t * clean-full - delete files & directories generated by all the targets above "
70
+
@echo "\t * docs - generate \"site\"/ directory with documentation in a form of static html files using ReadTheDocs framework and $(MKDOCS_YML) local config file"
71
+
@echo "\t * docs-deploy - generate & deploy docs online to gh-pages branch of current github repo"
72
+
@echo "\t * clean-build - delete generated files & dirs produced during builds EXCEPT generated docker container image"
73
+
@echo "\t * clean-full - delete generated files & dirs produced during builds INCLUDING generated docker container image"
75
74
@echo ""
76
75
@echo "NOTES on supported pass-trough targets:"
77
76
@echo "\t * main Makefile is located in source/ directory and used to build the firmware itself;"
@@ -91,16 +90,25 @@ list:
91
90
# bash one-liner to generate langs for "make list":
0 commit comments