summaryrefslogtreecommitdiff
path: root/lib/libterm/Makefile
blob: 8c70ab29850912a52f5479b24cf12b68c2fc5362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#	$NetBSD: Makefile,v 1.24 2000/07/03 21:10:57 christos Exp $
#	@(#)Makefile	8.1 (Berkeley) 6/4/93

LIB=	termcap
CPPFLAGS+=-I${.CURDIR} -DCM_N -DCM_GT -DCM_B -DCM_D
SRCS=	termcap.c tgoto.c tputs.c

MAN=	termcap.3
MLINKS=	termcap.3 tgetent.3 termcap.3 tgetflag.3 termcap.3 tgetnum.3 \
	termcap.3 tgetstr.3 termcap.3 tgoto.3 termcap.3 tputs.3 \
	termcap.3 t_getent.3 termcap.3 t_getflag.3 termcap.3 t_getnum.3 \
	termcap.3 t_getstr.3 termcap.3 t_goto.3 termcap.3 t_puts.3 \
	termcap.3 t_freent.3
INCS=	termcap.h
INCSDIR=/usr/include

.include <bsd.own.mk>

.if ${MKLINKLIB} != "no"
LINKS+=	${LIBDIR}/libtermcap.a ${LIBDIR}/libtermlib.a
.endif

.if ${MKPROFILE} != "no"
LINKS+=	${LIBDIR}/libtermcap_p.a ${LIBDIR}/libtermlib_p.a
.endif

.if ${MKPIC} != "no"

.if ${MKPICINSTALL} != "no"
LINKS+=	${LIBDIR}/libtermcap_pic.a ${LIBDIR}/libtermlib_pic.a
.endif

.if exists(${.CURDIR}/shlib_version)
LINKS+=	${LIBDIR}/lib${LIB}.so.${SHLIB_FULLVERSION} \
	${LIBDIR}/libtermlib.so.${SHLIB_FULLVERSION}

.if (${OBJECT_FMT} == "ELF")
LINKS+=	${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR} \
	${LIBDIR}/libtermlib.so.${SHLIB_MAJOR}
LINKS+=	${LIBDIR}/lib${LIB}.so ${LIBDIR}/libtermlib.so
.endif
.endif

.endif	# ${MKPIC} != "no"

.include <bsd.lib.mk>