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:
committed by
Frederic Branczyk
parent
4e5b454ba8
commit
5686d7b439
4
Makefile
4
Makefile
@@ -34,9 +34,9 @@ generate: manifests **.md
|
|||||||
**.md: $(shell find examples) build.sh example.jsonnet
|
**.md: $(shell find examples) build.sh example.jsonnet
|
||||||
$(EMBEDMD_BINARY) -w `find . -name "*.md" | grep -v vendor`
|
$(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
|
rm -rf manifests
|
||||||
./build.sh ./examples/kustomize.jsonnet
|
./build.sh $<
|
||||||
|
|
||||||
vendor: jsonnetfile.json jsonnetfile.lock.json
|
vendor: jsonnetfile.json jsonnetfile.lock.json
|
||||||
rm -rf vendor
|
rm -rf vendor
|
||||||
|
|||||||
Reference in New Issue
Block a user