Makefile: Fix manifests target dependency (#285)

Since 1664600, manifests are built using `examples/kustomize.jsonnet`
instead of `example.jsonnet`.

This commit updates the dependencies in the `manifests` target to
reflect that change.
This commit is contained in:
Benoît Knecht
2019-10-24 13:37:11 +02:00
committed by Frederic Branczyk
parent 4e5b454ba8
commit 5686d7b439

View File

@@ -34,9 +34,9 @@ generate: manifests **.md
**.md: $(shell find examples) build.sh example.jsonnet
$(EMBEDMD_BINARY) -w `find . -name "*.md" | grep -v vendor`
manifests: vendor example.jsonnet build.sh
manifests: examples/kustomize.jsonnet vendor build.sh
rm -rf manifests
./build.sh ./examples/kustomize.jsonnet
./build.sh $<
vendor: jsonnetfile.json jsonnetfile.lock.json
rm -rf vendor