Fix makefile to ignore Dockerfiles and docs directories

* Add Dockerfiles and docs directories to exclude from
    make all

Signed-off-by: Sreejith Punnapuzha <Sreejith.Punnapuzha@outlook.com>
Change-Id: I1571ac164b3b1819ad56611e612bc9cab87c3d1e
This commit is contained in:
Sreejith Punnapuzha 2019-02-05 14:23:50 -06:00 committed by Sreejith Punnapuzhha
parent a4078d8a7a
commit 6c70a67cef
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ SHELL := /bin/bash
HELM := helm
TASK := build
EXCLUDES := helm-toolkit doc tests tools logs tmp roles playbooks releasenotes
EXCLUDES := helm-toolkit docs Dockerfiles
CHARTS := helm-toolkit $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.)))
.PHONY: $(EXCLUDES) $(CHARTS)