aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-04-05 21:08:39 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-04-05 21:09:19 +1200
commit165c35c70b43349e882bd44be31c0837ab19729b (patch)
tree2a1f4218b78721c3262ac0c0b634629037f50ce6 /Makefile
parentRemove mail/mailrc from ignored files (diff)
downloaddotfiles-165c35c70b43349e882bd44be31c0837ab19729b.tar.gz
dotfiles-165c35c70b43349e882bd44be31c0837ab19729b.zip
More sh flexibility (check/lint scripts)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile32
1 files changed, 16 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 7dc69c2e..86d44810 100644
--- a/Makefile
+++ b/Makefile
@@ -459,31 +459,31 @@ check: check-bash \
check-urxvt
check-bash:
- check/bash
+ sh check/bash.sh
check-bin: $(BINS)
- check/bin
+ sh check/bin.sh
check-games: $(GAMES)
- check/games
+ sh check/games.sh
check-man:
- check/man
+ sh check/man.sh
check-ksh:
- check/ksh
+ sh check/ksh.sh
check-sh:
- check/sh
+ sh check/sh.sh
check-urxvt:
- check/urxvt
+ sh check/urxvt.sh
check-yash:
- check/yash
+ sh check/yash.sh
check-zsh:
- check/zsh
+ sh check/zsh.sh
lint: check \
lint-bash \
@@ -495,22 +495,22 @@ lint: check \
lint-yash
lint-bash:
- lint/bash
+ sh lint/bash.sh
lint-bin:
- lint/bin
+ sh lint/bin.sh
lint-games:
- lint/games
+ sh lint/games.sh
lint-ksh:
- lint/ksh
+ sh lint/ksh.sh
lint-sh:
- lint/sh
+ sh lint/sh.sh
lint-urxvt:
- lint/urxvt
+ sh lint/urxvt.sh
lint-yash:
- lint/yash
+ sh lint/yash.sh