blob: b2405415f9063cfd905650a8c0e1eb070afa3a3a [file] [log] [blame]
badhri854c028b32021-11-03 18:24:05 -05001# 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
6all:
7 test
8
9clean: # @HELP clean up temporary files for omec-control-plane
10 rm -rf omec-control-plane/charts omec-control-plane/requirements.lock
11
12test: # @HELP run the acceptance tests
13 helm dep update omec-control-plane
14
15help:
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 '