aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 9 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index a27d0c8..c758d39 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,12 @@
.POSIX:
-CFLAGS = -Wall -Wextra -Wpedantic -Werror \
- -O3 -march=native -mtune=native -fomit-frame-pointer \
- -pipe -D_POSIX_C_SOURCE=200809
-PREFIX = /usr
-DPREFIX = ${DESTDIR}${PREFIX}
-MANDIR = ${DPREFIX}/share/man
+CFLAGS = -Wall -Wextra -Wpedantic -Werror \
+ -O3 -march=native -mtune=native -fomit-frame-pointer \
+ -pipe -D_POSIX_C_SOURCE=200809
+PREFIX = /usr
+DPREFIX = ${DESTDIR}${PREFIX}
+MANDIR = ${DPREFIX}/share/man
+ZCOMPDIR = ${DPREFIX}/share/zsh/functions/Completion/Unix
target = center
@@ -16,6 +17,7 @@ clean:
rm -f ${target}
install:
- mkdir -p ${DPREFIX}/bin ${MANDIR}/man1
+ mkdir -p ${DPREFIX}/bin ${MANDIR}/man1 ${ZCOMPDIR}
cp ${target} ${DPREFIX}/bin
cp ${target}.1 ${MANDIR}/man1
+ cp completions/_${target} ${ZCOMPDIR}