summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e3a11c1..d9bd337 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,15 @@ DOC_DIR=$(DESTDIR)/usr/share/doc/archiso
all:
+check:
+ shellcheck -s bash archiso/mkarchiso \
+ scripts/run_archiso.sh \
+ $(INSTALL_FILES) \
+ $(wildcard configs/*/build.sh) \
+ configs/releng/airootfs/root/.automated_script.sh \
+ configs/releng/airootfs/usr/local/bin/choose-mirror
+ shellcheck -s dash $(HOOKS_FILES) $(SCRIPT_FILES)
+
install: install-program install-initcpio install-examples install-doc
install-program:
@@ -41,4 +50,4 @@ dist:
upload:
scp archiso32-$(V).tar.gz archiso32-$(V).tar.gz.sig sources.archlinux32.org:sources/
-.PHONY: install install-program install-initcpio install-examples install-doc dist upload
+.PHONY: check install install-program install-initcpio install-examples install-doc dist upload