40 lines
1.7 KiB
Makefile
40 lines
1.7 KiB
Makefile
# Copyright 2023 The cert-manager Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
.PHONY: generate
|
|
## Generate all generate targets.
|
|
## @category [shared] Generate/ Verify
|
|
generate: $$(shared_generate_targets)
|
|
@echo "The following targets cannot be run simultaniously with each other or other generate scripts:"
|
|
$(foreach TARGET,$(shared_generate_targets_dirty), $(MAKE) $(TARGET))
|
|
|
|
verify_script := $(dir $(lastword $(MAKEFILE_LIST)))/util/verify.sh
|
|
|
|
# Run the supplied make target argument in a temporary workspace and diff the results.
|
|
verify-%: FORCE
|
|
+$(verify_script) $(MAKE) $*
|
|
|
|
verify_generated_targets = $(shared_generate_targets:%=verify-%)
|
|
verify_generated_targets_dirty = $(shared_generate_targets_dirty:%=verify-%)
|
|
|
|
verify_targets = $(sort $(verify_generated_targets) $(shared_verify_targets))
|
|
verify_targets_dirty = $(sort $(verify_generated_targets_dirty) $(shared_verify_targets_dirty))
|
|
|
|
.PHONY: verify
|
|
## Verify code and generate targets.
|
|
## @category [shared] Generate/ Verify
|
|
verify: $$(verify_targets)
|
|
@echo "The following targets create temporary files in the current directory, that is why they have to be run last:"
|
|
$(foreach TARGET,$(verify_targets_dirty), $(MAKE) $(TARGET))
|