config.mk (612B)
1 # Install paths 2 PREFIX = /usr/local 3 MANDIR = $(PREFIX)/share/man/man1 4 5 # Version to put in the ident string 6 VERSION = "1.04" 7 GETVER = $$(git rev-parse --is-inside-work-tree >/dev/null 2>&1 && \ 8 git describe --tags || echo $(VERSION)) 9 10 # UI type 11 # txt (textual) 12 #UI=txt 13 # ti (screen-oriented) 14 UI=ti 15 LIBS=-lcurses 16 17 # IO type 18 # clr (clear) 19 #IO = clr 20 # tls (Transport Layer Security) 21 IO = tls 22 IOLIBS = -ltls 23 IOCFLAGS = -DUSE_TLS 24 25 # Define NEED_ASPRINTF and/or NEED_STRCASESTR in your cflags if your system does 26 # not provide asprintf() or strcasestr(), respectively. 27 #CFLAGS = -DNEED_ASPRINTF -DNEED_STRCASESTR