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