1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 07:27:59 -08:00
openbsd-src/usr.bin/tset/Makefile
nicm c7ef0cfc17 Update ncurses and associated libraries (form, panel, menu) to
6.4-20230826 (from 5.7-20081102).

Based on result from Thomas Dickey's ncu2openbsd script and then
modified. Switches to the upstream tput. Major bump for the ncurses
libraries and for libedit and libreadline.

Help from tb, millert.

ok deraadt sthen
2023-10-17 09:52:08 +00:00

15 lines
369 B
Makefile

# $OpenBSD: Makefile,v 1.13 2023/10/17 09:52:11 nicm Exp $
PROG= tset
SRCS= reset_cmd.c transform.c tset.c tty_settings.c
CURSES= ${.CURDIR}/../../lib/libcurses
DPADD= ${LIBCURSES}
LDADD= -lcurses
LINKS= ${BINDIR}/tset ${BINDIR}/reset
TIC= ${.CURDIR}/../tic
CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I.
.PATH: ${TIC}
CLEANFILES+= termsort.h
.include <bsd.prog.mk>