aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-05-11 14:32:27 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-05-11 14:32:27 +0200
commitb38099416b9e90c1bcc0e2ebc32eab6284254c66 (patch)
treeb064d5812556981dc2916dac98688564e66c6e3a
parent7eac078e1049493d708097af69f6894d609ec6a8 (diff)
Add a qa target
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fd8d01b..5b3436d 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,10 @@ man:
scdoc < share/doc/bashtard.7.scd > "$(DESTDIR)/share/man/man7/bashtard.7"
scdoc < share/doc/playbooks.d.7.scd > "$(DESTDIR)/share/man/man7/playbooks.d.7"
+qa:
+ reuse lint
+ shellcheck bin/bashtard **/*.bash
+
share:
mkdir -pv -- "$(DESTDIR)/share/bashtard"
cp -rv -- \
@@ -42,4 +46,4 @@ share:
share/os.d \
"$(DESTDIR)/share/bashtard"
-.PHONY: install uninstall bin lib man share
+.PHONY: install uninstall qa bin lib man share