mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-20 08:04:52 +00:00
12 lines
383 B
Makefile
12 lines
383 B
Makefile
self_dir := $(dir $(lastword $(MAKEFILE_LIST)))
|
|
|
|
|
|
# We need to be careful to expand all the paths before any include is done
|
|
# or self_dir could be modified for the next include by the included file.
|
|
# Also doing this at the end of the file allows us to use self_dir before it could be modified.
|
|
include $(addprefix $(self_dir), \
|
|
default.mk \
|
|
targets/openshift/operator/*.mk \
|
|
)
|
|
|