blob: 044e0cdd7d0767aab0ac9e8d84d6b17ac0d55731 [file] [log] [blame]
Jack Lucas7723ffe2020-02-13 17:19:01 -05001# Copyright © 2020 AT&T Intellectual Property. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020014HELM_BIN := helm
15
Jack Lucas8c3463e2020-06-12 18:36:55 -040016make-dcaemod: make-dcaemod-distributor-api make-dcaemod-genprocessor make-dcaemod-designtool make-dcaemod-onboarding-api make-dcaemod-runtime-api make-dcaemod-nifi-registry make-dcaemod-healthcheck
Jack Lucas7723ffe2020-02-13 17:19:01 -050017
18make-dcaemod-distributor-api:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020019 cd components && $(HELM_BIN) dep up dcaemod-genprocessor && $(HELM_BIN) lint dcaemod-genprocessor
Jack Lucas7723ffe2020-02-13 17:19:01 -050020
21make-dcaemod-genprocessor:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020022 cd components && $(HELM_BIN) dep up dcaemod-distributor-api && $(HELM_BIN) lint dcaemod-distributor-api
Jack Lucas7723ffe2020-02-13 17:19:01 -050023
24make-dcaemod-designtool:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020025 cd components && $(HELM_BIN) dep up dcaemod-designtool && $(HELM_BIN) lint dcaemod-designtool
Jack Lucas7723ffe2020-02-13 17:19:01 -050026
27make-dcaemod-onboarding-api:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020028 cd components && $(HELM_BIN) dep up dcaemod-onboarding-api && $(HELM_BIN) lint dcaemod-onboarding-api
Jack Lucas7723ffe2020-02-13 17:19:01 -050029
30make-dcaemod-runtime-api:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020031 cd components && $(HELM_BIN) dep up dcaemod-runtime-api && $(HELM_BIN) lint dcaemod-runtime-api
Jack Lucas7723ffe2020-02-13 17:19:01 -050032
33make-dcaemod-nifi-registry:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020034 cd components && $(HELM_BIN) dep up dcaemod-nifi-registry && $(HELM_BIN) lint dcaemod-nifi-registry
Jack Lucas7723ffe2020-02-13 17:19:01 -050035
Jack Lucas8c3463e2020-06-12 18:36:55 -040036make-dcaemod-healthcheck:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020037 cd components && $(HELM_BIN) dep up dcaemod-healthcheck && $(HELM_BIN) lint dcaemod-healthcheck
Jack Lucas8c3463e2020-06-12 18:36:55 -040038
Jack Lucas7723ffe2020-02-13 17:19:01 -050039clean:
40 @find . -type f -name '*.tgz' -delete
41 @find . -type f -name '*.lock' -delete