blob: 92291c67d4cf50cda29fbd67da94a82fa8c1c504 [file] [log] [blame]
Dominic Lunanuova50aafc52018-03-30 02:29:23 +00001# Copyright © 2018 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
Dominic Lunanuova50aafc52018-03-30 02:29:23 +000015
dglFromAtt655708d2019-03-18 16:30:47 +000016make-dmaap: make-dmaap-bc make-message-router make-dmaap-dr-node make-dmaap-dr-prov
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000017
dglFromAtt655708d2019-03-18 16:30:47 +000018make-dmaap-bc:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020019 cd components && $(HELM_BIN) dep up dmaap-bc && $(HELM_BIN) lint dmaap-bc
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000020
21make-message-router:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020022 cd components && $(HELM_BIN) dep up message-router && $(HELM_BIN) lint message-router
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000023
econwar28266fa2019-03-05 16:39:00 +000024make-dmaap-dr-node:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020025 cd components && $(HELM_BIN) dep up dmaap-dr-node && $(HELM_BIN) lint dmaap-dr-node
econwar28266fa2019-03-05 16:39:00 +000026
27make-dmaap-dr-prov:
Jakub Latusekdb52a6d2020-10-15 15:02:47 +020028 cd components && $(HELM_BIN) dep up dmaap-dr-prov && $(HELM_BIN) lint dmaap-dr-prov
Fiachra Corcoranbe966552018-08-07 16:58:45 +010029
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000030clean:
31 @find . -type f -name '*.tgz' -delete
dglFromAtt671f59b2019-03-13 15:50:40 +000032 @find . -type f -name '*.lock' -delete