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>
This commit is contained in:
Valentin Rothberg 2019-09-11 10:41:07 +02:00
parent 48c7ea2cc2
commit cbaca108b9

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
SRC := ./BuildSourceImage.sh
all: validate
.PHONY: validate
validate: $(SRC)
shellcheck -a $(SRC)