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 56a49e2 commit 4a1646bCopy full SHA for 4a1646b
Makefile
@@ -1,3 +1,18 @@
1
+# https://tech.davis-hansson.com/p/make/
2
+SHELL := bash
3
+# todo: do not set .ONESHELL: for now
4
+# http://redsymbol.net/articles/unofficial-bash-strict-mode/
5
+#.SHELLFLAGS := -eu -o pipefail -c
6
+.DELETE_ON_ERROR:
7
+MAKEFLAGS += --warn-undefined-variables
8
+MAKEFLAGS += --no-builtin-rules
9
+
10
+# todo: leave the default recipe prefix for now
11
+ifeq ($(origin .RECIPEPREFIX), undefined)
12
+ $(error This Make does not support .RECIPEPREFIX. Please use GNU Make 4.0 or later)
13
+endif
14
+.RECIPEPREFIX =
15
16
IMAGE_REGISTRY ?= quay.io/opendatahub/workbench-images
17
RELEASE ?= 2024b
18
# additional user-specified caching parameters for $(CONTAINER_ENGINE) build
0 commit comments