github.com/looshlee/cilium@v1.6.12/examples/kubernetes/addons/prometheus/templates/Makefile (about) 1 include ../../../../../Makefile.defs 2 3 4 DESTINATION= "../monitoring-example.yaml" 5 6 create: clean 7 for file in $(shell ls -1 *.yaml); do \ 8 cat $$file >> $(DESTINATION); \ 9 done 10 11 clean: 12 rm $(DESTINATION) 13 14 .PHONY: create