containers-bsi/Makefile
Valentin Rothberg cbaca108b9 Add a Makefile
Add a simple Makefile with a `validate` target to run `shellcheck -a` on
the script.

Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2019-09-11 10:41:07 +02:00

7 lines
101 B
Makefile

SRC := ./BuildSourceImage.sh
all: validate
.PHONY: validate
validate: $(SRC)
shellcheck -a $(SRC)