From cbaca108b9a20adf3615a57acf0fd994aefde3de Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Wed, 11 Sep 2019 10:41:07 +0200 Subject: [PATCH] Add a Makefile Add a simple Makefile with a `validate` target to run `shellcheck -a` on the script. Signed-off-by: Valentin Rothberg --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..59c9bce --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +SRC := ./BuildSourceImage.sh + +all: validate + +.PHONY: validate +validate: $(SRC) + shellcheck -a $(SRC)