86344bb535
The upgrade of tic to v 1.19 fixes a memory corruptions that was visible when cross building (specially when using long path names in the output file argument).
13 lines
225 B
Makefile
13 lines
225 B
Makefile
# $NetBSD: Makefile,v 1.1 2010/02/03 15:16:32 roy Exp $
|
|
|
|
PROG= tic
|
|
WARNS= 4
|
|
|
|
CPPFLAGS+= -I${.CURDIR}/../../lib/libterminfo
|
|
|
|
.ifndef HOSTPROG
|
|
LDADD+= -lterminfo -lutil
|
|
DPADD+= ${LIBTERMINFO}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|