Skip to content

Commit

Permalink
Fix make all command to execute all tasks (strimzi#8900)
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Scholz <www@scholzj.com>
  • Loading branch information
scholzj authored Jul 25, 2023
1 parent 0f1888a commit c42ff37
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,14 @@ docu_htmlnoheaderclean:
docu_pdfclean:
rm -rf documentation/pdf

helm_install: packaging/helm-charts/helm3
helm_install:
$(MAKE) -C packaging/helm-charts/helm3 helm_install

crd_install: packaging/install
crd_install:
$(MAKE) -C packaging/install crd_install

dashboard_install: packaging/examples
dashboard_install:
$(MAKE) -C packaging/examples dashboard_install

$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)
Expand Down

0 comments on commit c42ff37

Please sign in to comment.