aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-31 17:49:42 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-31 17:49:42 +1200
commitcbad3d16fb358fb6042a0e91a21b15eeb90bb95c (patch)
tree3db6887e21a9dba69776d9e6b483fc57cd07e9d9 /Makefile
parentMerge branch 'openbsd' (diff)
downloaddotfiles-cbad3d16fb358fb6042a0e91a21b15eeb90bb95c.tar.gz
dotfiles-cbad3d16fb358fb6042a0e91a21b15eeb90bb95c.zip
Add very basic Yash support
I know almost nothing about Yash yet, but reading the manual page on its startup behaviour implies a little coaxing is necessary to make it play nicely with my file layout.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 15 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a311ee1d..b06a8344 100644
--- a/Makefile
+++ b/Makefile
@@ -40,6 +40,7 @@
install-vim-pathogen \
install-wyrd \
install-x \
+ install-yash \
install-zsh \
check \
check-bash \
@@ -48,11 +49,13 @@
check-pdksh \
check-sh \
check-urxvt \
+ check-yash \
lint \
lint-bash \
lint-bin \
lint-games \
lint-pdksh \
+ lint-yash \
lint-sh \
lint-urxvt
@@ -348,6 +351,10 @@ install-x :
install -pm 0644 -- X/Xresources "$(HOME)"/.Xresources
install -pm 0644 -- X/Xresources.d/* "$(HOME)"/.Xresources.d
+install-yash : check-yash install-sh
+ install -pm 0644 -- yash/yashrc "$(HOME)"/.yashrc
+ install -pm 0644 -- yash/yash_profile "$(HOME)"/.yash_profile
+
install-zsh : install-sh
install -pm 0644 -- zsh/zprofile "$(HOME)"/.zprofile
install -pm 0644 -- zsh/zshrc "$(HOME)"/.zshrc
@@ -380,13 +387,17 @@ check-sh :
check-urxvt :
check/urxvt
+check-yash :
+ check/yash
+
lint : check \
lint-bash \
lint-bin \
lint-games \
lint-pdksh \
lint-sh \
- lint-urxvt
+ lint-urxvt \
+ lint-yash
lint-bash :
lint/bash
@@ -405,3 +416,6 @@ lint-sh :
lint-urxvt :
lint/urxvt
+
+lint-yash :
+ lint/yash