uirc/config.mk

19 lines
578 B
Makefile
Raw Normal View History

2022-03-07 18:34:17 -07:00
# install location
2022-03-12 22:42:44 -07:00
PREFIX = /usr/local/bin
2022-03-12 22:27:36 -07:00
LIB_PREFIX = ${PREFIX}/lib
INCLUDE_PREFIX = /usr/include
2022-03-25 23:09:18 -06:00
# comment the line above and uncomment the following line
# if you are building on macOS, otherwise it is optional
#INCLUDE_PREFIX = /usr/local/include
2022-03-07 18:34:17 -07:00
# manual install location
MANPREFIX = ${PREFIX}/share/man
# compiler, default is gcc
2022-03-24 15:00:05 -06:00
# if you are on BSD, you might want to change this to cc unless you have gcc installed.
2022-03-07 18:34:17 -07:00
CC = gcc
2022-03-24 15:00:05 -06:00
# 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