blob: 578bd199ac89378ea080446ac6a63e1492b446ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
.POSIX:
CFLAGS   = -Wall -Wextra -Wpedantic -Werror \
	   -O3 -march=native -mtune=native -fomit-frame-pointer \
	   -pipe
PREFIX   = /usr
DPREFIX  = ${DESTDIR}${PREFIX}
MANDIR   = ${DPREFIX}/share/man
ZCOMPDIR = ${DPREFIX}/share/zsh/functions/Completion/Unix
target = center
all: ${target}
${target}: ${target}.c
clean:
	rm -f ${target}
install:
	mkdir -p ${DPREFIX}/bin ${MANDIR}/man1 ${ZCOMPDIR}
	cp ${target} ${DPREFIX}/bin
	cp ${target}.1 ${MANDIR}/man1
	cp completions/_${target} ${ZCOMPDIR}
 
  |