diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-03-28 19:26:53 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@parabola.nu> | 2017-05-04 21:09:14 -0400 |
commit | 368a6d2a37a8eb88da4a5a393b1f685c240835d5 (patch) | |
tree | 872c8cc61c30c3778a8a04b82d981082f2a7e04f /Makefile | |
parent | 855bccdbbc919396d17391337503e2bdc73c1cee (diff) | |
download | devtools32-368a6d2a37a8eb88da4a5a393b1f685c240835d5.tar.xz |
Makefile: Add a simple 'check' target that runs shellcheck
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -114,5 +114,8 @@ dist: upload: scp devtools-$(V).tar.gz devtools-$(V).tar.gz.sig repos.archlinux.org:/srv/ftp/other/devtools/ -.PHONY: all clean install uninstall dist upload +check: $(BINPROGS) bash_completion makepkg-x86_64.conf + shellcheck $^ + +.PHONY: all clean install uninstall dist upload check .DELETE_ON_ERROR: |