blob: fb17f28f11bfa76c46839828af88972e4effec07 [file] [log] [blame]
badhri854c028b32021-11-03 18:24:05 -05001# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
2#
Ajay Lotan Thakur03189d22022-02-10 14:06:03 -06003# SPDX-License-Identifier: Apache-2.0
badhri854c028b32021-11-03 18:24:05 -05004.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 '