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
This is disabled by default and must be enabled by passing
ENABLE_GIT_VERSION_INFO=1 to make.
When enabled, it requires git and python to be installed.
By default, make expects both a "git" and a "python" binary to be
present in the PATH. If this is not the case, the locations and names of
these binaries can instead be supplied by setting the GIT and PYTHON
variables accordingly.
$(error You need to set the DEVICE parameter to "Landungsbruecke", "LandungsbrueckeSmall" or "LandungsbrueckeV3". When calling make directly, do this by adding DEVICE=Landungsbruecke, DEVICE=LandungsbrueckeV3 or DEVICE=LandungsbrueckeSmall to the commandline)
290
-
endif
288
+
ifneq (,$(filter clean,$(MAKECMDGOALS)))
289
+
else ifneq (,$(filter codegen,$(MAKECMDGOALS)))
290
+
else
291
+
$(error You need to set the DEVICE parameter to "Landungsbruecke", "LandungsbrueckeSmall" or "LandungsbrueckeV3". When calling make directly, do this by adding DEVICE=Landungsbruecke, DEVICE=LandungsbrueckeV3 or DEVICE=LandungsbrueckeSmall to the commandline)
292
+
endif
291
293
endif
292
294
295
+
### Git info for build image ###################################################
0 commit comments