mu-wizard

shell script to easily configure mu4e accounts on Emacs
git clone git://git.ckyln.com/mu-wizard
Log | Files | Refs | LICENSE

commit ce29f129fa21f15c824881d492a7242248d4cce2
parent 5a4719261463d29bda987c76517e3d4eff3b8b43
Author: Cem Keylan <cem@ckyln.com>
Date:   Sat,  6 Feb 2021 20:57:26 +0300

Makefile: update

Diffstat:
MMakefile | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -8,8 +8,6 @@ all: install: mkdir -p ${DESTDIR}${BINDIR} ${DESTDIR}${MUSHAREDIR} - cp bin/mailsync ${DESTDIR}${BINDIR}/mailsync - chmod 755 ${DESTDIR}${BINDIR}/mailsync sed 's|/usr/share/mu-wizard|${MUSHAREDIR}|g' < bin/muw > ${DESTDIR}${BINDIR}/muw chmod 755 ${DESTDIR}${BINDIR}/muw cp mu4e-config.el ${DESTDIR}${MUSHAREDIR} @@ -20,7 +18,6 @@ install: chmod 644 ${DESTDIR}${MUSHAREDIR}/overrides/$${override##*/}; done uninstall: - rm -rf ${DESTDIR}${BINDIR}/muw ${DESTDIR}${BINDIR}/mailsync \ - ${DESTDIR}${MUSHAREDIR} + rm -rf ${DESTDIR}${BINDIR}/muw ${DESTDIR}${MUSHAREDIR} .PHONY: all install uninstall