diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -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} |