summaryrefslogtreecommitdiff
path: root/mk/termcap.mk
blob: 6f590da631213945b068bc2dd8f09deec740a7c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ifeq (${MKTERMCAP},ncurses)
	LTERMCAP:=	$(shell pkg-config ncurses --libs 2> /dev/null)
ifeq ($(LTERMCAP),)
LIBTERMCAP?=	-lncurses
else
LIBTERMCAP?= $(LTERMCAP)
endif
CPPFLAGS+=	-DHAVE_TERMCAP
LDADD+=		${LIBTERMCAP}
else ifeq (${MKTERMCAP},termcap)
LIBTERMCAP?=	-ltermcap
CPPFLAGS+=	-DHAVE_TERMCAP
LDADD+=		${LIBTERMCAP}
else ifneq (${MKTERMCAP},)
$(error If MKTERMCAP is defined, it must be ncurses or termcap)
endif