badhri85 | 4c028b3 | 2021-11-03 18:24:05 -0500 | [diff] [blame] | 1 | # SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org> |
| 2 | # |
| 3 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 |
| 4 | .PHONY: all test clean |
| 5 | |
| 6 | all: |
| 7 | test |
| 8 | |
| 9 | clean: # @HELP clean up temporary files for omec-control-plane |
| 10 | rm -rf omec-control-plane/charts omec-control-plane/requirements.lock |
| 11 | |
| 12 | test: # @HELP run the acceptance tests |
| 13 | helm dep update omec-control-plane |
| 14 | |
| 15 | help: |
| 16 | @grep -E '^.*: *# *@HELP' $(MAKEFILE_LIST) \ |
| 17 | | sort \ |
| 18 | | awk ' \ |
| 19 | BEGIN {FS = ": *# *@HELP"}; \ |
| 20 | {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}; \ |
| 21 | ' |