blob: 08d1dff4e7348881eefabe11bebbb497109b184d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.POSIX:
CFLAGS = -Ofast -march=native -mtune=native -pipe -Wall -Wextra -Werror -pedantic
PREFIX = /usr
DPREFIX = ${DESTDIR}${PREFIX}
target = center
all: ${target}
${target}: ${target}.c
clean:
rm -f ${target}
install:
mkdir -p ${DPREFIX}/bin ${DPREFIX}/share/man/man1
cp ${target} ${DPREFIX}/bin
cp ${target}.1 ${DPREFIX}/share/man/man1
|