Codebase list sacc / HEAD config.mk
HEAD

Tree @HEAD (Download .tar.gz)

config.mk @HEADraw · history · blame

# Install paths
PREFIX = /usr/local
MANDIR = $(PREFIX)/share/man/man1

# Version to put in the ident string
VERSION = "1.04"
GETVER = $$(git rev-parse --is-inside-work-tree >/dev/null 2>&1 && \
	    git describe --tags || echo $(VERSION))

# UI type
# txt (textual)
#UI=txt
# ti (screen-oriented)
UI=ti
LIBS=-lcurses

# IO type
# clr (clear)
#IO = clr
# tls (Transport Layer Security)
IO = tls
IOLIBS = -ltls
IOCFLAGS = -DUSE_TLS

# Define NEED_ASPRINTF and/or NEED_STRCASESTR in your cflags if your system does
# not provide asprintf() or strcasestr(), respectively.
#CFLAGS = -DNEED_ASPRINTF -DNEED_STRCASESTR