diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2021-06-01 10:20:31 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2021-06-01 10:22:31 +0200 |
commit | f4d360fbe38653c08cf79d2446b9f740536f5a8c (patch) | |
tree | 67e5c6f4efea0369fdaeb1100f5736315e615fcd | |
parent | b2c4a0f0c48d6c131785221baafa8c425eb20c26 (diff) |
Makefile.in: Add the shellcheck target
Run shellcheck on the build.sh and the build_matrix.sh scripts.
(using 'gcc' format: GCC compatible output. See the shellcheck man page)
[skip ci]
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 7d6d2f69..5d88ea71 100644 --- a/Makefile.in +++ b/Makefile.in @@ -829,3 +829,6 @@ depend: $(GENERATED_C_SRC) $(GENHDR) $(MKDEP) -c "$(CC)" -m "$(DEPENDENCY_CFLAG)" -s "$(srcdir)" $(CFLAGS) $(DEFS) $(INCLS) $(SRC) (cd rpcapd; $(MAKE) depend) (cd testprogs; $(MAKE) depend) + +shellcheck: + shellcheck -f gcc build.sh build_matrix.sh |