github.com/looshlee/beatles@v0.0.0-20220727174639-742810ab631c/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