diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-05-05 18:41:06 -0400 |
---|---|---|
committer | Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> | 2017-07-05 18:21:55 +0200 |
commit | 430e1265fbe5c752217195aebdb5949416f0bb7a (patch) | |
tree | e54fc2a90db4caf06b3235e1e7e74367c32894c3 /Makefile | |
parent | 56cace32b29e427e2f33754cf7f50bf691b619ce (diff) | |
download | devtools32-430e1265fbe5c752217195aebdb5949416f0bb7a.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: |