this is my patched version of ii - the suckless irc client.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# Customize to fit your system
# paths
PREFIX = /usr/localBINDIR = ${PREFIX}/binMANDIR = ${PREFIX}/share/manMAN1DIR = ${MANDIR}/man1DOCDIR = ${PREFIX}/share/doc/ii
# Set the following to install to a different root
DESTDIR =
INCDIR = ${PREFIX}/includeLIBDIR = ${PREFIX}/libVERSION = 1.7
# includes and libs
INCLUDES = -I. -I${INCDIR} -I/usr/includeLIBS = -L${LIBDIR} -L/usr/lib -lc -lssl -lcrypto# uncomment and comment other variables for compiling on Solaris
#LIBS = -L${LIBDIR} -L/usr/lib -lc -lsocket -lnsl
#CFLAGS = -g ${INCLUDES} -DVERSION=\"${VERSION}\"
# compiler
CC = ccCFLAGS = -g -O0 -W -Wall ${INCLUDES} -DVERSION=\"${VERSION}\"LDFLAGS = ${LIBS}
|