You've already forked reposilite-charts
27 lines
767 B
Makefile
27 lines
767 B
Makefile
# CONTAINER_RUNTIME
|
|
CONTAINER_RUNTIME?=$(shell which podman)
|
|
|
|
# MISSING DOT
|
|
# ==============================================================================
|
|
missing-dot:
|
|
grep --perl-regexp '## @(param|skip).*[^.]$$' values.yaml
|
|
|
|
# README
|
|
# ==============================================================================
|
|
readme: readme/link readme/lint readme/parameters
|
|
|
|
readme/link:
|
|
npm install && npm run readme:link
|
|
|
|
readme/lint:
|
|
npm install && npm run readme:lint
|
|
|
|
readme/parameters:
|
|
npm install && npm run readme:parameters
|
|
|
|
# PHONY
|
|
# ==============================================================================
|
|
# Declare the contents of the PHONY variable as phony. We keep that information
|
|
# in a variable so we can use it in if_changed.
|
|
.PHONY: ${PHONY}
|