abra zsh config 2.0

This commit is contained in:
Andrey Anurin
2018-08-12 15:26:21 +03:00
parent 201abd09c4
commit 6b114440e2
1195 changed files with 68948 additions and 10539 deletions

27
.zprezto/modules/fasd/external/Makefile vendored Normal file
View File

@@ -0,0 +1,27 @@
PREFIX?= /usr/local
BINDIR?= ${PREFIX}/bin
MANDIR?= ${PREFIX}/share/man
INSTALL?= install
INSTALLDIR= ${INSTALL} -d
INSTALLBIN= ${INSTALL} -m 755
INSTALLMAN= ${INSTALL} -m 644
all: fasd.1
uninstall:
rm -f ${DESTDIR}${BINDIR}/fasd
rm -f ${DESTDIR}${MANDIR}/man1/fasd.1
install:
${INSTALLDIR} ${DESTDIR}${BINDIR}
${INSTALLBIN} fasd ${DESTDIR}${BINDIR}
${INSTALLDIR} ${DESTDIR}${MANDIR}/man1
${INSTALLMAN} fasd.1 ${DESTDIR}${MANDIR}/man1
man: fasd.1
fasd.1: fasd.1.md
pandoc -s -w man fasd.1.md -o fasd.1
.PHONY: all install uninstall man