X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=Makefile;h=eadd5d7bed0248a5c426e01008c1ece23c62a7ec;hb=a4f942e8459ab4e9fdf06d7cbb4f1aeeb65a99e5;hp=1018daf42928e442db4cd16ca637ae5f3c5920c6;hpb=6fc8f78d026b31f4f4a3ee6507d726ddc37adbc8;p=live-boot-grml.git diff --git a/Makefile b/Makefile index 1018daf..eadd5d7 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +4,14 @@ SHELL := sh -e LANGUAGES = de +SCRIPTS = bin/* hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/* + all: test build test: @echo -n "Checking for syntax errors" - @for SCRIPT in bin/* hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \ + @for SCRIPT in $(SCRIPTS); \ do \ sh -n $${SCRIPT}; \ echo -n "."; \ @@ -22,7 +24,7 @@ test: @# We can't just fail yet on bashisms (FIXME) @if [ -x /usr/bin/checkbashisms ]; \ then \ - for SCRIPT in bin/* hooks/* scripts/live scripts/live-functions scripts/live-helpers scripts/*/*; \ + for SCRIPT in $(SCRIPTS); \ do \ checkbashisms $${SCRIPT} || true; \ echo -n "."; \