aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-04-09 14:29:03 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-04-09 14:32:40 +1200
commitcd6c4ff92b7e6da0f48abbd0e455f16cc681f80e (patch)
tree2ba90a20456b9ce7cc49406cb1035062b157dbe3 /Makefile
parentRestructure shell install and check (diff)
downloaddotfiles-cd6c4ff92b7e6da0f48abbd0e455f16cc681f80e.tar.gz
dotfiles-cd6c4ff92b7e6da0f48abbd0e455f16cc681f80e.zip
Add xinitrc.d script checks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8a363e89..cb814c22 100644
--- a/Makefile
+++ b/Makefile
@@ -51,6 +51,7 @@
check-login-shell \
check-sh \
check-urxvt \
+ check-xinit \
check-yash \
check-zsh \
lint \
@@ -60,6 +61,7 @@
lint-ksh \
lint-sh \
lint-urxvt \
+ lint-xinit \
lint-yash
.SUFFIXES:
@@ -423,7 +425,7 @@ install-vim-pathogen: install-vim-plugins
mkdir -p -- $(HOME)/.vim/autoload
ln -fs -- ../bundle/pathogen/autoload/pathogen.vim $(HOME)/.vim/autoload
-install-x:
+install-x: check-xinit
mkdir -p -- \
$(HOME)/.config \
$(HOME)/.config/sxhkdrc \
@@ -478,6 +480,9 @@ check-sh:
check-urxvt:
sh check/urxvt.sh
+check-xinit:
+ sh check/xinit.sh
+
check-yash:
sh check/yash.sh
@@ -490,7 +495,7 @@ lint: lint-bash \
lint-ksh \
lint-sh \
lint-urxvt \
- lint-x \
+ lint-xinit \
lint-yash
lint-bash: check-bash
@@ -511,5 +516,8 @@ lint-sh: check-sh
lint-urxvt: check-urxvt
sh lint/urxvt.sh
+lint-xinit: check-xinit
+ sh lint/xinit.sh
+
lint-yash: check-yash
sh lint/yash.sh