we don't _need_ to remove these and we can keep them around for longer, but we don't need them to be in files we actually use and edit. putting the targets in a separate file feels cleaner! Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
24 lines
905 B
Makefile
24 lines
905 B
Makefile
# Targets in this file are legacy holdovers from before the migration to make.
|
|
# They're preserved here in case they're used in some third party CI system or script,
|
|
# but are liable to being removed or broken without warning.
|
|
|
|
.PHONY: verify
|
|
verify: ci-presubmit test
|
|
$(warning "The '$@' target is deprecated and may be removed. Use 'make $^' instead.")
|
|
|
|
.PHONY: verify_deps
|
|
verify_deps:
|
|
$(warning "The '$@' target is deprecated and may be removed. This target is a no-op with the new make flow.")
|
|
|
|
.PHONY: cluster
|
|
cluster: e2e-setup-kind
|
|
$(warning "The '$@' target is deprecated and may be removed. Use 'make $^' instead.")
|
|
|
|
.PHONY: verify_chart
|
|
verify_chart: verify-chart
|
|
$(warning "The '$@' target is deprecated and may be removed. Use 'make $^' instead.")
|
|
|
|
.PHONY: verify_upgrade
|
|
verify_upgrade: test-upgrade
|
|
$(warning "The '$@' target is deprecated and may be removed. Use 'make $^' instead.")
|