8d2591041a
* Added sentinels to the line structures when in debug mode to try to pick up data overwrite problems, if they occur.
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.36 2002/07/19 13:22:41 blymn Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 1/2/94
|
|
|
|
CPPFLAGS+=#-DTFILE=\"/dev/ttyp0\"
|
|
CPPFLAGS+=-I${.CURDIR} -I${.CURDIR}/../libterm
|
|
.if defined(DEBUG_CURSES)
|
|
CFLAGS+=-g
|
|
.if defined(FULL_DEBUG)
|
|
CPPFLAGS+=-DDEBUG
|
|
.endif
|
|
.endif
|
|
LIB= curses
|
|
SRCS= acs.c addbytes.c addch.c addnstr.c attributes.c background.c bell.c \
|
|
border.c box.c clear.c clearok.c clrtobot.c clrtoeol.c color.c \
|
|
copywin.c cr_put.c ctrace.c cur_hash.c curs_set.c curses.c delch.c \
|
|
deleteln.c delwin.c erase.c flushok.c fullname.c getch.c getstr.c \
|
|
getyx.c id_subwins.c idlok.c idcok.c inch.c inchstr.c initscr.c \
|
|
insch.c insdelln.c insertln.c instr.c keypad.c leaveok.c line.c \
|
|
longname.c meta.c move.c mvwin.c newwin.c nodelay.c notimeout.c \
|
|
overlay.c overwrite.c pause.c printw.c putchar.c refresh.c resize.c \
|
|
scanw.c screen.c scroll.c scrollok.c setterm.c standout.c timeout.c \
|
|
toucholap.c touchwin.c tscroll.c tstp.c tty.c unctrl.c underscore.c
|
|
|
|
MAN= curses.3
|
|
INCS= curses.h unctrl.h
|
|
INCSDIR=/usr/include
|
|
|
|
CPPFLAGS+=-DCM_N -DCM_GT -DCM_B -DCM_D
|
|
SRCS+= termcap.c tgoto.c tputs.c
|
|
.PATH: ${.CURDIR}/../libterm
|
|
|
|
.if make(install)
|
|
SUBDIR+= PSD.doc
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|
|
.include <bsd.subdir.mk>
|