blob: b1e5a7355e9cde3fbda45287e2b4065f19bba847 [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.
14make-dcaemod: make-dcaemod-distributor-api make-dcaemod-genprocessor make-dcaemod-designtool make-dcaemod-onboarding-api make-dcaemod-runtime-api make-dcaemod-nifi-registry
15
16make-dcaemod-distributor-api:
17 cd components && helm dep up dcaemod-genprocessor && helm lint dcaemod-genprocessor
18
19make-dcaemod-genprocessor:
20 cd components && helm dep up dcaemod-distributor-api && helm lint dcaemod-distributor-api
21
22make-dcaemod-designtool:
23 cd components && helm dep up dcaemod-designtool && helm lint dcaemod-designtool
24
25make-dcaemod-onboarding-api:
26 cd components && helm dep up dcaemod-onboarding-api && helm lint dcaemod-onboarding-api
27
28make-dcaemod-runtime-api:
29 cd components && helm dep up dcaemod-runtime-api && helm lint dcaemod-runtime-api
30
31make-dcaemod-nifi-registry:
32 cd components && helm dep up dcaemod-nifi-registry && helm lint dcaemod-nifi-registry
33
34clean:
35 @find . -type f -name '*.tgz' -delete
36 @find . -type f -name '*.lock' -delete