15 lines
426 B
Makefile
15 lines
426 B
Makefile
# install location
|
|
PREFIX = /usr/local/bin
|
|
LIB_PREFIX = ${PREFIX}/lib
|
|
INCLUDE_PREFIX = /usr/include
|
|
|
|
# manual install location
|
|
MANPREFIX = ${PREFIX}/share/man
|
|
|
|
# compiler, default is gcc
|
|
# if you are on BSD, you might want to change this to cc unless you have gcc installed.
|
|
CC = gcc
|
|
|
|
# other options you want to add
|
|
# uncomment the following line if you are building on BSD
|
|
#OPTIONS = -L /usr/local/lib -I /usr/local/include
|